We are using RadDatePickers in our application and have a business requirement to force the user pick the date using the popup calendar rather than manually typing it in which is accomplished with the EnableTyping="false" flag. So far so good.
The problem is once a date is picked the end user has no way to blank it out or undo it - i.e. intentionally set the date back to null using the popup calendar. Is there a way to do this? I was playing around with the popup calendar and could not find a way to set it blank from the popup date picker. In the past the user could highlight the date text and delete it but this is disabled due to the EnableTyping="false" flag. Below is a sample of how the picker is used in the applicaiton:
The problem is once a date is picked the end user has no way to blank it out or undo it - i.e. intentionally set the date back to null using the popup calendar. Is there a way to do this? I was playing around with the popup calendar and could not find a way to set it blank from the popup date picker. In the past the user could highlight the date text and delete it but this is disabled due to the EnableTyping="false" flag. Below is a sample of how the picker is used in the applicaiton:
<
telerik:RadDatePicker
ID
=
"rdpDateTimeField"
runat
=
"server"
Skin
=
"Office2007"
Width
=
"150px"
MinDate
=
"1/1/1900"
EnableTyping
=
"false"
ToolTip
=
"Please select date using the calendar icon."
>
<
Calendar
ShowRowHeaders
=
"false"
>
</
Calendar
>
</
telerik:RadDatePicker
>