Hi,
I have a error message when generating my web page dynamically. The error message is : "Microsoft JScript runtime error: Object doesn't support this property or method".
In the web page i'm adding my RadDateTimePicker, I have a RadCalendar and a RadTimeView.
Once my control is created, I had it to the controls in my page and this is where I get the error. BTW, I have don't have any problem if I change the control to Telerik.Web.UI.RadDatePicker.
objReturn = New Telerik.Web.UI.RadDateTimePicker |
With DirectCast(objReturn, Telerik.Web.UI.RadDateTimePicker) |
.AutoPostBack = True |
.CssClass = v_drControl("cCss_class").ToString |
.SharedCalendarID = "calShared" '<-- The name of my RadCalendar |
.SharedTimeViewID = "tvShared" '<-- The name of my RadTimeView |
.Skin = "CHCA" |
.EnableEmbeddedSkins = False |
.TabIndex = CType(v_intTabIndex, Short) |
End With |