Use Refresh function to refresh WebGrid in client side. This method will refresh only the data.
This topic will show you how to refresh WebGrid's data.
To refresh WebGrid's data
- Drag WebGrid instance into the WebForm.
- Add a client side function on your code.
- You can refresh grid's data by simply using:
-
JavaScript Copy Code function doClick()
{
var grid = ISGetObject("WebGrid1");
grid.Refresh();
}
Other Resources
Walkthrough Topics
How-to Topics