For whatever reason, when I set the width from JavaScript, frozen columns stop working, they are no longer frozen in place, I can't seem to find a work around either including repainting it.
This is where the grid starts and is set to have frozen columns:
And this is my javascript that handles resizing:
Any ideas or more info that you need?
Thanks in advanced
This is where the grid starts and is set to have frozen columns:
<telerik:RadGrid ID="OrganizationalErrorsGrid" runat="server" OnItemDataBound="onItemDataBound" OnItemCreated="onItemCreated" AllowSorting="true" OnSortCommand="onSorting" > <ClientSettings> <%-- <Selecting AllowRowSelect="true" /> --%> <Scrolling FrozenColumnsCount="3" AllowScroll="True" UseStaticHeaders="True" /> <ClientEvents OnGridCreated="getwithdrawnEmployeesGrid" /> </ClientSettings>function jsUpdateSize() { var grid = document.getElementById("<%=OrganizationalErrorsGrid.ClientID%>"); var width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; if (width > 1650) grid.style.width = "1533px"; else if (width > 680) grid.style.width = (width-80).toString() + "px"; else grid.style.width = "600px"; }Thanks in advanced