This question is locked. New answers and comments are not allowed.
HI
I am using 2011 Q2 release
I have a telerik window containing a grid which is popped up after clicking on a button on a grid in the main page.
Everything is working as expected, except the window resize. Dragging any corner will resize the window correclty, however, when resizing the window by dragging the bottom right corner of the window, although the window is resizing correctly, a javascript error is produced.
In Google Chrome:
Uncaught TypeError: Property ' ' of object #<Object> is not a function
in IE9:
Object doesn't support property or method ' '
This error is generated from telerik.window.min.js.
The Popup window code is as:
Has anyone encountered this issue? Is there a fix?
Thanks
Shane
I am using 2011 Q2 release
I have a telerik window containing a grid which is popped up after clicking on a button on a grid in the main page.
Everything is working as expected, except the window resize. Dragging any corner will resize the window correclty, however, when resizing the window by dragging the bottom right corner of the window, although the window is resizing correctly, a javascript error is produced.
In Google Chrome:
Uncaught TypeError: Property ' ' of object #<Object> is not a function
in IE9:
Object doesn't support property or method ' '
This error is generated from telerik.window.min.js.
The Popup window code is as:
@(Html.Telerik().Window() .Name("Window") .Title("Property Links") .Draggable(true) .Resizable(resizing => resizing .Enabled(true) .MinWidth(400) ) .Modal(true) .Buttons(b => b.Close()) .Content( @<text><h3> Active Properties - <span id="popupTitle"></span></h3>@(Html.Telerik().Grid<propertyobject>() .Name("PopupGrid") .ClientEvents(events => { events.OnRowSelect("codesApi.SelectProperty"); events.OnDataBinding("onPopupDataBind"); }) .DataBinding(dataBinding => dataBinding.Ajax() .Select("SelectPropertyAjax", @ViewBag.RouteValue)) .DataKeys(keys => keys.Add(c => c.PropertyId)) .Columns(columns => { columns.Bound(o => o.PropertyId).Width(50); columns.Bound(o => o.PropertyGroupCode).Width(50).Title("Group"); columns.Bound(o => o.ProjectShortName).Width(70).Title("Short Name"); columns.Bound(o => o.PropertyTypeCode).Width(50).Title("Type"); columns.Bound(o => o.ApplicationAgreementDate).Width(50).Title("App. Agreement"); columns.Bound(o => o.GrantCommencePurchDate).Width(50).Title("Commenced"); columns.Bound(o => o.ExpirySaleDate).Width(50); }) .Selectable() .Sortable(sorting => sorting.Enabled(true)) .Pageable(paging => paging.PageSize(10, new int[4] { 10, 15, 25, 50 }).Style(GridPagerStyles.PageSizeDropDown | GridPagerStyles.NextPreviousAndNumeric)) .Footer(true) )</text>) .Scrollable(true) .Width(800) .Height(510) .Visible(false) )Has anyone encountered this issue? Is there a fix?
Thanks
Shane