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
- Drag WebGrid instance into the WebForm.
- Add a client side function on your code.
- You can get the grid's row by KeyValue simply by using:
-
JavaScript Copy Code function RowObject() { var grid = ISGetObject("WebGrid1"); var row = grid.RootTable.GetRowByKeyValue("VINET"); // get WebGridRow object by key value. }
Other Resources
Walkthrough Topics
How-to Topics