or
In RadGrid filter what is the difference between 'null' and 'empty' and what is the use of these filters.
$find("<%= RadGrid1.ClientID %>").get_masterTableView().editItem(editedRow);<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"; }