Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you have used Calendar Extender, i am looking for ways to disable dates based on selection from another calendar selected date. In a project management application there are end and start dates, i am looking for ways to validate these on client. Someways would require postback which i am not willing to perform. There seems to be StartDate and EndDate properties for the calendar on the server, but does not seem to have any client side counterparts. Have you got any ideas how i can perform this.

share|improve this question
There is no way to disable dates in a CalendarExtender. You should use a RangeValidator to validate the selected date on client(and server)side. Additionally you could use javascript and handle the OnClientDateSelectionChanged stackoverflow.com/a/6550393/284240 – Tim Schmelter Jan 3 '12 at 11:01
@TimSchmelter but sure there must be some client function that disables the dates,example link i provided in question shows one. But sadly i work on Asp.net 2.0 so no StartDate and EndDate properties for my version. Least i can i validate with custom validator on client side. – Deeptechtons Jan 3 '12 at 11:13

1 Answer

up vote 0 down vote accepted

You can overwrite _cell_onclick javascript event to show an alert if a wrong date is chosen depending on the selected date in the other calendar.

Here is an example: Ajaxtoolkit Calendar Extender close button and date restriction

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.