How to disable previous dates while using in ajaxToolkit CalendarExtender
|
feedback
|
|
One Option is to use a rangevalidator on the textbox the calenderextender is bound to. Ie if you have the TargetID of the calendar extender set to tb1 add a rangeValidator to flag when the contents of tb1 is before today. Another option is using javascript and here is a good example: http://www.dotnetcurry.com/ShowArticle.aspx?ID=149 TIP 6. | |||
|
feedback
|
|
Here is my full solution to the calendar date restriction problem: What I like about this solution is that you set the MinimumValue and MaximumValue of a RangeValidator and you do not have to modify any javascript. I never found a full solution that did not require recompiling the AjaxControlToolkit.dll. Thanks to http://www.karpach.com/ajaxtoolkit-calendar-extender-tweaks.htm for giving me the idea of how to override key methods in the calendar.js file without having to recompile the AjaxControlToolkit.dll. Also, I got "AjaxControlToolkit is undefined" javascript errors, so I changed those to Sys.Extended.UI. and it works for me when using the 4.0 version of the toolkit.
Either in Page_Load or Init or wherever, set the min and max values for your range validator:
Add this javascript somewhere in your page:
Add this text box to your asp.net page with CalendarExtenter and RangeValidator:
| ||||
|
feedback
|
|
Please check the following solution. This might help you: http://gratisaccount.wordpress.com/2008/10/22/disable-dates-in-calendarextender/ | |||
|
feedback
|