Team,
I am removing all data rows of grid from client side.
I wanted to show in grid.
But it does not shows empty row which contains "No records to display".
Please let me know from where I can set this empty row message from clientside?
Following is my code.
This code works if grid doesn't contain any data but if grid contains the data then it removes the row from the grid but doesn't show
"No records to display".
Regards,
Sampada
I am removing all data rows of grid from client side.
I wanted to show in grid.
But it does not shows empty row which contains "No records to display".
Please let me know from where I can set this empty row message from clientside?
Following is my code.
This code works if grid doesn't contain any data but if grid contains the data then it removes the row from the grid but doesn't show
"No records to display".
var mastertableview = objgrid.get_masterTableView();
mastertableview.set_dataSource({});
mastertableview.set_virtualItemCount(1);
mastertableview.dataBind();
Regards,
Sampada