Intersoft WebGrid Documentation
How-to: Show/Hide Grid from client side
See Also Send comments on this topic.

Glossary Item Box

When you want to set WebGrid visible/invisible, you can use Show or Hide functions in client side.

This topic will show you how to show or hide WebGrid.

To show/hide WebGrid

  1. Drag WebGrid instance into the WebForm.
  2. Add a client side function on your code.
  3. You can show or hide grid simply by using:

  4. JavaScript Copy Code
    function showGrid()
    {
    var grid = ISGetObject('WebGrid1');
    grid.Show();
    }
    function hideGrid()
    {
    var grid = ISGetObject('WebGrid1');
    grid.Hide();
    }

See Also

©2012 Intersoft Solutions Corp. All Rights Reserved.