I was doing radDatePicker,enabled=false from the server side.
Now coming back to the client side I tried to enable the control
The scenario was like I had enabled the textbox of the radDatePicker but on clicking of the calendar popup button the calendar was not shown.
I used the following piece of code.
document.getElementById(obj17).parentElement.disabled=false
objrDatePicker.DateInput.Enable();
I'm right now being able to get the calendars on clicking of the raddatepicker but there are a few problems which I am still facing (I am making the radDatePicker enabled=false in the server side)
1. I got two radDatePickers in two different user controls, so when I'm using the code like:
obj16.PopupButton.onclick =
function()
{
obj16.TogglePopup();
return false;
}
it is always coming beside one radDatePicker in one user control, I'm not getting two calendars for each of the two radDatePicker.(On clicking of any of the two radDatePicker the only one calendar is appearing)
2. On clicking on any date, the selected date is not appearing in the textbox of the datepicker.
How will I able to get the control enabled from the client side?
Plese let me know ASAP because it's very urgent for me