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
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
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
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.