Intersoft WebGrid Documentation
How-to: Exit edit mode from a button click
See Also Send comments on this topic.

Glossary Item Box

Use ExitEditMode function to exit from WebGrid edit mode in client side.

This topic will show you how to exit from WebGrid's edit mode.

To exit from WebGrid edit mode

  1. Drag WebGrid instance into the WebForm.
  2. Add a client side function on your code.
  3. You can exit from edit mode by simply using:

  4. JavaScript Copy Code
    function ExitEditMode()
    {
    var grid = ISGetObject("WebGrid1");
    grid.ExitEditMode(false);
    }

See Also

©2012 Intersoft Solutions Corp. All Rights Reserved.