One of WebGrid's enhancement is its ability to perform refresh on only specific level of child table. This enhancement is made for scenarios where only child table needs to be refreshed without has to refresh the whole grid.
To refresh WebGrid Child Tables only
- Add a function in client side.
- Refresh the child table using Refresh method.
JavaScript Copy Code function refreshChild() { var grid = ISGetObject("WebGrid1"); grid.Tables["Orders"].Refresh(); }
- Run the project.