After selecting a date from the Date Picker calendar pop up, the control loses the focus. By default, shouldn't the focus return back to the input area?
If not, how can I set the focus back to the Rad Date Picker's associated input area?
I've tried the following javascript after the DateSelected event, but the focus method is not recognized:
| <script type="text/javascript"> |
| function SetDatePickerFocus() |
| { |
| var datePicker = window["<%= RADDatePicker1.ClientID %>"]; |
| datePicker.Focus(); |
| } |
| </script> |