Hi,
I have a datePicker with displayInline set to true. If the window that contains the datepicker has the vertical scrollbar, when I scroll down the window, the datepicker is hidden.
This problem occurs only with the latest version: 13.1.0.21
Thanks.
Regards
Stefano
<style type="text/css">
#dpInline{
position: absolute;
top: 800px;
left: 100px;
}
</style>
<script type="text/javascript">
$(document).ready(function () {
$('#dpInline').ejDatePicker({ width: 240, displayInline: true, showFooter: false });
});
</script>
<body>
<div id="dpInline"></div>
</body>