aneuryzm
aneuryzm

Reputation: 64834

Default keyboard events for a NSTableView

If I press the space bar in my NSTableView, and I have a column with check boxes, is the checkbox supposed to be automatically selected?

In other terms, what are the default keyboard events of a NSTableView? Does the default behavior consist only of the arrow keys changing the selection?

Upvotes: 2

Views: 383

Answers (1)

corbin dunn
corbin dunn

Reputation: 2667

Yup, that's how it works. -performClick happens on the cell, if it is un-ambiguous.

corbin

Upvotes: 1

Related Questions