If I use the following code to start editing a NSTableView
:
[dataTableView editColumn: 0
row: 0
withEvent: nil
select: YES];
The very first row/column combination in the table is now in edit mode. However if I have more than one column and I hit the tab button, the editor does not switch to the next column. Rather, editing mode exists.
If I were to click on the first row/column to enter edit mode, when I hit tab, the field editor moves to the next column (as I would expect).
Any ideas why this would happen? And how I could get my call to editColumn:row:withEvent:select:
to tab properly?