I would like to click on my grid client select column, hit the edit button, and retain the checked/selected state of the item after postback, but for some reason the SelectItems count of the grid is 0 after databinding.
<Rad:RadGrid ID="testgrid"OnNeedDataSource="testgrid_NeedDataSource"ClientSettings-Selecting-AllowRowSelect="true" runat="server"> <MasterTableView CommandItemDisplay="Top" EditMode="InPlace"> <CommandItemTemplate> <Asp:LinkButton ID="btnEditSelected" runat="server" CommandName="EditSelected" EnableViewState="true" CausesValidation="false" Visible="true" Text="Edit" /> </CommandItemTemplate> <Columns> <Rad:GridClientSelectColumn UniqueName="testselect"> </Rad:GridClientSelectColumn> </Columns> </MasterTableView></Rad:RadGrid> protected void testgrid_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e) { IList<string> items = new List<string>(); items.Add("test"); testgrid.DataSource = items; }