I am new to telerik components. I have a telerik radgrid that retrieve data from sql server data source and does basic sorting. That sorting does not work after I preserve radCombo values in server-side and put the radgrid code in !Ispostback(). I am aware that when grid header column is clicked for sorting, that time data gets posted back now and that is why the sorting is not working. How to solve this issue and I don't want to take off the radgrid.datasource in page_load !Isposback().
if (!IsPostBack){
RadGrid1.Datasource = DataTable("select * from customer");
RadGrid1.DataBind();
}
Thanks in advance.