Hi Team,
Thank you for the amazing code snippets on client side binding, was able to implement it quickly. But I'm facing an issue on adding a new row to the grid. On creating a new row, client binding code is called to fetch all the rows and bind it again to the
grid.
Thank you for the amazing code snippets on client side binding, was able to implement it quickly. But I'm facing an issue on adding a new row to the grid. On creating a new row, client binding code is called to fetch all the rows and bind it again to the
grid.
ServiceNamespace.Service1.GetData(param1, param2, updateGrid);
//callback
function updateGrid(result) {
var tableView = $find("<%= Grid1.ClientID %>").get_masterTableView();
tableView.set_dataSource(result);
tableView.dataBind();