Intersoft WebGrid Documentation
How-to: Get row by KeyValue
See Also Send comments on this topic.

Glossary Item Box

Use GetRowByKeyValue function to get WebGrid row by KeyValue in client side.

This topic will show you how to get WebGrid's row using GetRowByKeyValue.

To get WebGrid's row by KeyValue

  1. Drag WebGrid instance into the WebForm.
  2. Add a client side function on your code.
  3. You can get the grid's row by KeyValue simply by using:

  4. JavaScript Copy Code
    function RowObject()
    { 
       var grid = ISGetObject("WebGrid1"); 
       var row = grid.RootTable.GetRowByKeyValue("VINET");  // get WebGridRow object by key value.
    }
    

 

See Also

©2012 Intersoft Solutions Corp. All Rights Reserved.