Re: Restoring Tiger NSTableView behaviour in Leopard

2008-04-11 Thread Corbin Dunn
Thank you; that fixed it. Here is my solution (for a 4-column table): -(void)textDidEndEditing:(NSNotification *)notification { NSInteger editedColumn = [self editedColumn]; NSInteger editedRow = [self editedRow]; NSDictionary *userInfo = [notification userInfo

Re: Restoring Tiger NSTableView behaviour in Leopard

2008-04-11 Thread K. Darcy Otto
On 11-Apr-08, at 1:07 PM, Corbin Dunn wrote: On Apr 11, 2008, at 11:38 AM, K. Darcy Otto wrote: The application I am working on is essentially one big table, and I'd like to restore at least one aspect the default tab behaviour that Tiger used when editing tables. Namely, when the user is

Re: Restoring Tiger NSTableView behaviour in Leopard

2008-04-11 Thread Corbin Dunn
On Apr 11, 2008, at 11:38 AM, K. Darcy Otto wrote: The application I am working on is essentially one big table, and I'd like to restore at least one aspect the default tab behaviour that Tiger used when editing tables. Namely, when the user is at the end of the row and hits tab, I'd like

Restoring Tiger NSTableView behaviour in Leopard

2008-04-11 Thread K. Darcy Otto
The application I am working on is essentially one big table, and I'd like to restore at least one aspect the default tab behaviour that Tiger used when editing tables. Namely, when the user is at the end of the row and hits tab, I'd like editing to begin at the beginning of the next row.