or
function uxRadGrid_RowSelected(sender, arg) { //add rowKey to selection var rowKey = arg.getDataKeyValue("rowKey"); if (!selected[rowKey]) { selected[rowKey] = true; }}function uxRadGrid_RowDeselected(sender, arg) { //remove rowKey from selection var rowKey = arg.getDataKeyValue("rowKey"); if (selected[rowKey]) { selected[rowKey] = null; }}function uxRadGrid_RowCreated(sender, arg) { //select row if in selection var rowKey = arg.getDataKeyValue("rowKey"); if (selected[rowKey]) { arg.get_gridDataItem().set_selected(true); }} //nothing here <telerik:RadGrid ID="uxRadGrid" Skin="Transparent" AutoGenerateColumns="false" ShowHeader="true" Width="100%" OnNeedDataSource="uxRadGrid_NeedDataSource" OnItemCreated="uxRadGrid_ItemCreated" OnItemDataBound="uxRadGrid_ItemDataBound" PagerStyle-AlwaysVisible="true" PagerStyle-Mode="NumericPages" PagerStyle-Position="Bottom" AllowPaging="true" AllowMultiRowSelection="true" AllowSorting="true" runat="server"> <MasterTableView ClientDataKeyNames="rowKey" TableLayout="Auto" GridLines="None"> <Columns> <telerik:GridClientSelectColumn /> <telerik:GridBoundColumn DataField="rowKey" HeaderText="Row Key" /> <telerik:GridBoundColumn DataField="user_status" /> <telerik:GridBoundColumn DataField="user_role" /> <telerik:GridBoundColumn DataField="user_firstname" /> <telerik:GridBoundColumn DataField="user_lastname" /> <telerik:GridBoundColumn DataField="user_email" /> </Columns> <SortExpressions> <telerik:GridSortExpression FieldName="rowKey" SortOrder="Ascending" /> </SortExpressions> </MasterTableView> <ClientSettings> <ClientEvents OnRowCreated="uxRadGrid_RowCreated" OnRowDeselected="uxRadGrid_RowDeselected" OnRowSelected="uxRadGrid_RowSelected" OnGridCreated="uxRadGrid_Created" /> <Selecting AllowRowSelect="true" /> </ClientSettings> </telerik:RadGrid> <td style=" float: left;width: 0px;margin-left: -1px;"> <asp:Image ImageUrl="images/b2.png" ID="img_right" Visible="false" AlternateText="right" runat="server" Style="cursor: hand; float: right; padding-left: 990px; margin-top:75px;" /> <asp:Image ImageUrl="images/b1.png" ID="img_left" Visible="false" AlternateText="left" runat="server" Style="cursor: hand; float: left; margin-top:75px; margin-left:-25px;" /> <telerik:RadRotator ID="radRotatorCompanyTagCloud" runat="server" ScrollDuration="500" WrapFrames="false" Width="990px" Height="400px" RotatorType="Buttons" ItemHeight="350px"> <ControlButtons LeftButtonID="img_left" RightButtonID="img_right" /></telerik:RadRotator>