Hello,In cell-based table views (NSTableView and NSOutlineView), if you had editable text field cells, tabbing out of a text cell would automatically move the focus to the next editable cell. So, say you had a table composed of five rows and three columns. If you were editing row 4, column 2 and hit tab, the cell at row 4, column 3 would gain the focus (presuming it was editable; otherwise the next editable cell would get the focus). If you hit tab again, row 5, column 1 would get the focus. And if the cell at row 5, column 3 was being edited and you hit tab, focus would cycle up to row 1, column 1.In view-based tables, however, this does not work as expected. In view-based tables, things work as follows:1. You double-click to start editing a cell - e.g. row 4, column 2.2. You hit tab and things work as expected to begin with.3. However, when you reach the last cell in the table and hit tab again, focus returns to the table view and editing ends.4
6
0
2.8k