or
RadGrid1.Allowpaging = false;
RadGrid1.ReBind();
foreach (GridDataItem item in grid1.Items) { RadioButton btn = (RadioButton)item.FindControl("radiobutton1"); string value = item.GetDataKeyValue("Questionnumber").ToString();
if( value == Questionnumber)RadGrid1.Allowpaging = true;RadGrid1.PageSize = 20; RadGrid1.ReBind(); // if I write this then my Radio Button selected is not show and if I not write then paging is not showIn telerik gridview, i am having checkbox, preview button, description button in each row of telerik grid once i select some checkboxes and hits download button i want to uncheck all the checkboxes that were checked earlier in the grid. is there any way in javascript or telerik functionality to uncheck all the checkboxes after hitting download button
Questionnumber)RadGrid1.Allowpaging = false;
RadGrid1.ReBind();
foreach (GridDataItem item in grid1.Items) { RadioButton btn = (RadioButton)item.FindControl("radiobutton1"); string value = item.GetDataKeyValue("Questionnumber").ToString();
if( value == Questionnumber)RadGrid1.MasterTableView.CurrentPageIndex = 3; // see ,here is also one problem : I write it 3 but it should be //like that which radiobutton is selected I need to find the current page Index of that page where the selected radiobutton row is exist .Questionnumber) is true(int)(RadGrid1.MasterTableView.Items.Count / 20 ), RadGrid1.Allowpaging = true;RadGrid1.PageSize = 20; RadGrid1.MastertableView.ReBind(); // if I write this then My selected Radio Button not selected and if I don't write then paging 