In my column defs i have this:
{
headerName: 'All',
field: 'all',
headerCheckboxSelection: true,
headerCheckboxSelectionFilteredOnly: true,
checkboxSelection: true,
width: 40,
maxWidth: 40,
suppressFilter: true,
cellStyle: params => {
return { textAlign: 'center' }
}
},
But when i select by checkbox i dont get selected rows.Any suggestion how can i do that, to make select by checkbox same as row selection?
Im using this from ag grid documentation: https://www.ag-grid.com/javascript-grid-selection/