Hi,
I've got a really simple situation here that is malfunctioning for some reason..
I've got a RadDatePicker :
And some simple javascript that is running when I press a button:
The object is found properly, but I get the exception "Microsoft JScript runtime error: Object doesn't support this property or method" when calling get_selectedDate(). Any idea of what's wrong?
BR
I've got a really simple situation here that is malfunctioning for some reason..
I've got a RadDatePicker :
<
telerik:RadDatePicker
ID
=
"datePicker"
runat
=
"server"
(...) />
And some simple javascript that is running when I press a button:
var
datePickerElem = $(
'#<%= datePicker.ClientID %>'
).get(0);
var
currDate = datePickerElem.get_selectedDate();
The object is found properly, but I get the exception "Microsoft JScript runtime error: Object doesn't support this property or method" when calling get_selectedDate(). Any idea of what's wrong?
BR