I have a TimePicker that is disabled on page load from the code behind using certain criteria and the following code:
There is a check box on the same page that that if checked it should enable the TimePicker1 so I'm using the example code:
Problem:
When item is disbled from code behind the javascript is only enabling the viewarea but not the popup button??!!
Any ideas of should I be using
thank you,
| TimePicker1.Enabled = false; |
There is a check box on the same page that that if checked it should enable the TimePicker1 so I'm using the example code:
| function enable() |
| { |
| var picker = $find("<%= TimePicker1.ClientID %>"); |
| picker.set_enabled(true); |
| } |
Problem:
When item is disbled from code behind the javascript is only enabling the viewarea but not the popup button??!!
Any ideas of should I be using
thank you,