Available events
SlickGrid and SlickDataView
SlickGrid and SlickDataView// 1. with PubSub instance
this.angularGrid.instances?.eventPubSubService?.subscribe('onCellChange', (payload) => console.log('PubSub, cell changed data:', payload));
// 2. with CustomEvent in the View (see html code below)
handleOnCellChange(e) {
// `eventData` is the event it was triggered from and `args` is the data payload
const { eventData, args } = e.detail;
const dataContext = args?.item;
console.log('cell changed data:', args);
}<!-- 2. with CustomEvent in the View -->
<angular-slickgrid
gridId="grid2"
[columns]="columnDefinitions"
[options]="gridOptions"
[dataset]="dataset"
(onCellChange)="handleOnCellChange($event.detail)">
</angular-slickgrid>all other events
CellExternalCopyManager (extension)
Context Menu / Cell Menu (extension)
Column Picker (extension)
Grid Menu (extension)
Header Buttons (extension)
Header Menu (extension)
Export Services
Filter Service
Grid Service
GridState Service
Pagination Service
Resizer Service
Sort Service
TreeData Service
Angular-Slickgrid Component
SlickGrid
SlickDataView
Last updated