I have NSOutlineView with checkboxes:
When I select multiple rows they become blue, however if I check any checkbox, I only select the related item (and its children).
Instead, I would like to check all selected items in the table.
Thanks
Here's a solution:
NSButtonCell
's action selector to this action.-numberOfSelectedRows
on your outline view to find out if there are any more rows you need to act on, and -selectedRowIndexes
to get access to the row indexes.-reloadData
to update the display of the other rows.