JavaScript Data Grid: Grid Events
This is a list of the events that the grid raises.
You register callbacks for these events through the GridOptions interface.
The name of the callback is constructed by prefixing the event name with on. For example, the callback for the cellClicked event is gridOptions.onCellClicked.
const gridOptions = {
// Add event handlers
onCellClicked: (event: CellClickedEvent) => console.log('Cell was clicked'),
}TypeScript users can take advantage of the events' interfaces. You can construct the interface name by suffixing the event name with Event. For example, the cellClicked event uses the interface CellClickedEvent. All events support generics. See Typescript Generics for more details.
List of Events
The following are all events emitted by the grid. If using TypeScript, you can reference the interface for each event.