Hi there,
is there a way to make the DatePicker show its calendar always?
I tried to show the calendar on document load by using "DatePicker.showPopup()" and keep it visible by using:
But the
If the users just clicks outside the control, the Popup closes without firing the event.
So is there a simple way to get a DatePicker show its calendar permanently or some workaround?
I also tried using a DatePicker and a additional Calendar and sync the input between the controls, but this is quit uncomfortable an error-prone
Any help is appreciated
btw
There was a post about this topic a few months ago, but there was no helpful answer to this:
http://www.telerik.com/community/forums/aspnet-ajax/calendar/raddatepicker-can-raddatepicker-show-the-calendar-always.aspx
Lukas
is there a way to make the DatePicker show its calendar always?
I tried to show the calendar on document load by using "DatePicker.showPopup()" and keep it visible by using:
<script type=
"text/javascript"
>
function
OnPopupClosing(sender, args)
{
eventArgs.set_cancel(
true
);
}
</script>
But the
OnPopupClosing
-Event is only fired if the Popup closes after a date was selected.If the users just clicks outside the control, the Popup closes without firing the event.
So is there a simple way to get a DatePicker show its calendar permanently or some workaround?
I also tried using a DatePicker and a additional Calendar and sync the input between the controls, but this is quit uncomfortable an error-prone
Any help is appreciated
btw
There was a post about this topic a few months ago, but there was no helpful answer to this:
http://www.telerik.com/community/forums/aspnet-ajax/calendar/raddatepicker-can-raddatepicker-show-the-calendar-always.aspx
Lukas