Select multiple checkboxes in a table - Perspective

add an onRowClick() event on the table:

something like if you use json format: (if column name is checkbox)
self.props.data[event.row].checkbox = not event.value.checkbox

then you can send all the data where checkbox==true

2 Likes