Hi,
I’m using your demo customrowsselection.htm but with selectionmode set to “singlecell”. I want to use singlecell because the behavior is really the one I want. This means there are not row selected, only cells.
I would like to provide a checkbox (like in the demo) allowing the user to select all rows to be deleted. This part works fine. I made change to the demo and configured the grid like this
editable: true,
theme: theme,
enablehover:true,
pageable:true,
sortable:true,
autoheight:true,
selectionmode:‘singlecell’,
editable:true,
….
Now, if I want to delete the rows that are checked, I can’t really use getselectedrows as my rows are not really selected. I need to identify and delete them one by one… Is there an easy way to get all the checked rows without having to iterate throught the list.
Thank you