Re: Starting editing for a Row as soon as it is Added.

2009-08-28 Thread Joshua Garnham
>Subject: Re: Starting editing for a Row as soon as it is Added. > >On 8/27/09 4:42 PM, Joshua Garnham said: > >>I have an NSOutlineView and what I want to happen is that when a row is >>added I want the row that has been added to Start Editing immediately >>like when you

Re: Starting editing for a Row as soon as it is Added.

2009-08-27 Thread Sean McBride
On 8/27/09 4:42 PM, Joshua Garnham said: >I have an NSOutlineView and what I want to happen is that when a row is >added I want the row that has been added to Start Editing immediately >like when you double click on a row. @implementation NSTableView (RRExtra) - (void)makeEditableSelectedCellOfC

Starting editing for a Row as soon as it is Added.

2009-08-27 Thread Joshua Garnham
I have an NSOutlineView and what I want to happen is that when a row is added I want the row that has been added to Start Editing immediately like when you double click on a row. Cheers, Josh. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Re: Starting editing for a Row as soon as it is Added. (More Detail)

2009-08-19 Thread Kyle Sluder
On Wed, Aug 19, 2009 at 10:31 AM, Joshua Garnham wrote: > The line ->    [outlineView rowForItem:(id)@"New Item"]; > Is supposed to give the row number of the added row to the next line If you believe this to be the case, you need to go back over the language basics. This isn't even specifically

Starting editing for a Row as soon as it is Added. (More Detail)

2009-08-19 Thread Joshua Garnham
Hi There, I have an NSOutlineView and what I want to happen is that when a row is added I want the row that has been added to Start Editing immediately like when you double click on a row. I have had a go using the code below (but as I'm not that Confident with Cocoa) it did not work. - (IBActi

Re: Starting editing for a Row as soon as it is Added.

2009-08-19 Thread I. Savant
On Aug 19, 2009, at 10:30 AM, Joshua Garnham wrote: I have an NSOutlineView and what I want to happen is that when a row is added I want the row that has been added to Start Editing immediately like when you double click on a row. ... - (IBAction)add:(id)sender { [treeController add:@"New

Starting editing for a Row as soon as it is Added.

2009-08-19 Thread Joshua Garnham
Hi There, I have an NSOutlineView and what I want to happen is that when a row is added I want the row that has been added to Start Editing immediately like when you double click on a row. I have had a go using the code below (but as I'm not that Confident with Cocoa) it did not work. - (IBActi