This question is locked. New answers and comments are not allowed.
Hi,
I have a telerik grid in client mode.I am removing the grid json data manually and rebind the grid using the following lines,
var grid = $("#" + this.GridName).data("tGrid")
grid.total = gridData.length;
grid.data = gridData;
grid.dataBind(gridData);
grid.dataSource._data = gridData;
In case when there is no data in the grid, If user click on the column for sorting or change the page size the grid will send the request to server for data fetching.
Kindly, let me know if this is the default behaviour or bug.
Regards,
Faisal Nasir
I have a telerik grid in client mode.I am removing the grid json data manually and rebind the grid using the following lines,
var grid = $("#" + this.GridName).data("tGrid")
grid.total = gridData.length;
grid.data = gridData;
grid.dataBind(gridData);
grid.dataSource._data = gridData;
In case when there is no data in the grid, If user click on the column for sorting or change the page size the grid will send the request to server for data fetching.
Kindly, let me know if this is the default behaviour or bug.
Regards,
Faisal Nasir