Intersoft WebGrid Documentation
How-to: Refresh Child Tables only
See Also Send comments on this topic.

Glossary Item Box

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

  1. Add a function in client side.
  2. Refresh the child table using Refresh method.

    JavaScript Copy Code
    function refreshChild()  
    {   
       var grid = ISGetObject("WebGrid1");   
       grid.Tables["Orders"].Refresh();  
    }
    

  3. Run the project.

See Also

©2012 Intersoft Solutions Corp. All Rights Reserved.