ajax tool
-
In my asp .net web application project,I used two ajax calendar extenders for fromdate and todate and two text boxes to display the date.I have four radiobuttons.Before,After,between,equals.I have to disable the calendar extendar in page load and when the between radio button is checked,then only that two date calendarextendar will have to be enabled. please help me to write java script to disable calendar extender :(( Thank you
-
In my asp .net web application project,I used two ajax calendar extenders for fromdate and todate and two text boxes to display the date.I have four radiobuttons.Before,After,between,equals.I have to disable the calendar extendar in page load and when the between radio button is checked,then only that two date calendarextendar will have to be enabled. please help me to write java script to disable calendar extender :(( Thank you
I don't knw abt javascript but u can set calendarextendar1.Enabled = false in code behind wherever required. Tej Aj, http://opexsolution.com/forum/[^] Fan of: http://www.abtstudioz.com/[^]
-
In my asp .net web application project,I used two ajax calendar extenders for fromdate and todate and two text boxes to display the date.I have four radiobuttons.Before,After,between,equals.I have to disable the calendar extendar in page load and when the between radio button is checked,then only that two date calendarextendar will have to be enabled. please help me to write java script to disable calendar extender :(( Thank you
Add following code onclick handler of your radio button
document.getElementById("<% =formDate.ClientID %>").disabled = true;