|
Event |
Description |
|
Table Creation |
|
OnTableCreating |
This event is fired before the table is created. |
|
OnTableCreated |
This event is fired after the table is created. |
|
OnTableDestroying |
This event is fired when table object is destroyed. |
|
Column Creation |
|
OnColumnCreating |
This event is fired before column is created on client-side. |
|
OnColumnCreated |
This event is fired after a column is created on client-side. |
|
OnColumnDestroying |
This event is fired when a column object is destroyed. |
|
Column Resizing
Each time you have
|
Copy Code |
|
grid.MasterTableView.ResizeColumn(columnIndex, newWidth) or respectively |
|
Copy Code |
|
grid.DetailTableView.ResizeColumn(columnIndex, newWidth) | executed, and where grid is the client-side RadGrid object, following events are fired: |
|
OnColumnResizing |
This event is fired before a column is resized. |
|
OnColumnResized |
This event is fired after a column is resized. |
|
Columns Ordering |
|
OnColumnSwaping |
This event is fired before two columns are swapped. |
|
OnColumnSwaped |
This event is fired after two columns are swapped. |
|
OnColumnMovingToLeft |
This event is fired before a column is moved to the left. |
|
OnColumnMovedToLeft |
This event is fired after a column is moved to the left. |
|
OnColumnMovingToRight |
This event is fired before a column is moved to the right. |
|
OnColumnMovedToRight |
This event is fired after a column is moved to the right. |
|
Row Creation |
|
OnRowCreating |
This event is fired before a row available client-side is created. |
|
OnRowCreated |
This event is fired after a row available client-side is created. |
|
OnRowDestroying |
This event is fired when a row object is destroyed. |
|
Row Resizing
Each time you have
|
Copy Code |
|
grid.MasterTableView.ResizeRow(rowIndex, newWidth) |
or respectively
|
Copy Code |
|
grid.DetailTableView.ResizeRow(rowIndex, newWidth) | executed, and where grid is the client-side RadGrid object, following events are fired: |
|
OnRowResizing |
This event is fired before a row is resized. |
|
OnRowResized |
This event is fired after a row is resized. |
|
Row Selection |
|
OnRowSelecting |
This event is fired before row selection. |
|
OnRowSelected |
This event is fired after row selection. |
|
OnRowDeselecting |
This event is fired before row deselection. |
|
OnRowDeselected |
This event is fired after row deselection. |
|
OnClick and OnDblClick Events |
|
OnRowClick |
This event is fired when a row is clicked. |
|
OnRowDblClick |
This event is fired when a row is double-clicked. |
|
OnColumnClick |
This event is fired when a column is clicked. |
|
OnColumnDblClick |
This event is fired when a column is double-clicked. |
|
Mouse Events |
|
OnRowMouseOver |
This event is fired when the mouse hovers over a row. |
|
OnRowMouseOut |
This event is fired when the mouse leaves a row. |
|
OnColumnMouseOver |
This event is fired when the mouse hovers over a column. |
|
OnColumnMouseOut |
This event is fired when the mouse leaves a column. |
|
Context Menus |
|
OnColumnContextMenu |
This event is fired when the context menu for a column is called. |
|
OnRowContextMenu |
This event is fired when the context menu for a row is called. |
|
Column Visibility |
|
OnColumnHiding |
This event is fired before a column is hidden. |
|
OnColumnHidden |
This event is fired after a column is hidden. |
|
Row Visibility |
|
OnRowHiding |
This event is fired before a row is hidden. |
|
OnRowHidden |
This event is fired after a row is hidden. |
|
Row Deletion |
|
OnRowDeleting |
This event is fired before a row is deleted (client-side delete). |
|
OnRowDeleted |
This event is fired after a row is deleted (client-side delete). |