I am create a LWC component using Slickgris Universal 4.7.0 for custom datatable. However I can not set the checkbox column correctly. How can I config the option for this?
I already set the gridOption by (Row Selection)[https://ghiscoding.gitbook.io/slickgrid-universal/grid-functionalities/row-selection] as follows.
enableAutoResize: true,
enableCellNavigation: true,
enableCheckboxSelector: true,
enableRowSelection: true,
rowSelectionOptions: {
// True (Single Selection), False (Multiple Selections)
selectActiveRow: false
},
But screen is…
enter image description here
onSelectedRowsChange event worked for SelectAll checkbox on filter header. But not for single row.
Any other options are effected to this?
Please help on this.
Set the gridOption as following.
enableAutoResize: true,
enableCellNavigation: true,
enableCheckboxSelector: true,
enableRowSelection: true,
rowSelectionOptions: {
// True (Single Selection), False (Multiple Selections)
selectActiveRow: false
},
And I want a screen like demo.
enter image description here
goodGhost is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.