I have a control that has a Radgrid with three GridDropDownColumn as RadComboBox. I have been trying to enable paging for it and it works for all the other fields but this 3 fields. I'am assigning the Datatable that i use as datasource to the Viewstate and use the following code in the PageIndexChanged and NeedDataSource events:
What could i do to make the paging work for the GridDropDownColumn columns?
if (ViewState["GridData"] != null)
{
grdCitasMasivas.DataSource = ViewState["GridData"];
grdCitasMasivas.Rebind();
}
What could i do to make the paging work for the GridDropDownColumn columns?