i want to add a new row either as a second header or a new row at first position in the grid so that it remains at the top and the row remains at the first position even with paging (adding new row at databound event)
previously i was doing something like this with the gridview control
then i was building the row by adding cell values individually and finally adding this row in the table.
i have also attached the screen shot of the grid implementing this functionality.
how i can do that with telerik grid?
Thanks,
Prashant
previously i was doing something like this with the gridview control
Table tbl = gvDownload.Rows[0].Parent as Table;
GridViewRow gRow = new GridViewRow(-1, -1, DataControlRowType.DataRow, DataControlRowState.Insert);
i have also attached the screen shot of the grid implementing this functionality.
how i can do that with telerik grid?
Thanks,
Prashant