| function openEditContactWindow(param) { |
| var oWnd = $find("RadWindowManager").open("ContentInsertUpdateForm.aspx?Id="+ param +"&PageMode=Edit" , "RadWindow"); |
| oWnd.setSize(650, 400); |
| oWnd.set_behaviors( Telerik.Web.UI.WindowBehaviors.Move + Telerik.Web.UI.WindowBehaviors.Close ); |
| oWnd.center(); |
| oWnd.add_close(EditWindow_Close); |
| } |
_setTimeMatrix
var tableElement = this._findTableElement(this.DivElement); //This line returns null, so rows is empty
var tableRowLength = tableElement.rows.length;
I'm using your RadControlsExtensions to render these controls... Is there something I may be missing? I have a reference to Html.RadControlScripts<RadTimeView> in my view and a RadScriptManager:
<%= Html.RadControlScripts<RadCalendar>() %>
<%= Html.RadControlScripts<RadDateInput>() %>
<%= Html.RadControlScripts<RadTimeView>() %>
<%= Html.RadControlScripts<RadTextBox>() %>
<%= Html.RadControlCss<RadDateTimePicker>() %>
<%= Html.RadControlScripts<RadDateTimePicker>() %>
<%= Html.RadControlCss<RadComboBox>() %>
<%= Html.RadControlScripts<RadComboBox>() %>
<%= Html.RadControl<RadDateTimePicker>((rad) =>
{
rad.ID = "StartDate";
}) %>