There are two possible means to reference the client grid object:
- Using the $find(id) method (shortcut for the findComponent() method) of the ASP.NET AJAX framework
- Subscribing to the GridCreated client event of the control. In its handler the first argument passed (sender) will reference
the client grid object
Telerik RadGrid exposes rich client side API with various client events which can be
wired to execute custom client code and change the data presentation.
In this example we demonstrate the usage of the following client-side events:
- OnGridCreated
- OnColumnResized
- OnColumnSwapping
- OnColumnSwapped
- OnColumnClick
- OnColumnDblClick
- OnColumnMouseOver
- OnColumnMouseOut
- OnRowResized
- OnRowClick
- OnRowDblClick
- OnRowMouseOver
- OnRowMouseOut
- OnRowSelected
- OnRowDeselected
- OnRowContextMenu
- OnColumnContextMenu
More about the client side API of the control you can learn from the
Client-side API
reference section in the grid documentation:
Getting familiar with the client side API
Controls - RadGrid - "Client-side API reference"