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

2009-08-28 Thread Joshua Garnham
Thanks Very Much Sean. Just 2 Questions, Where do I put the Code? and How will the method know when a Row is Added? Cheers, Josh. From: Sean McBride s...@rogue-research.com To: Joshua Garnham joshua.garn...@yahoo.co.uk; cocoa-dev@lists.apple.com Sent: Thursday,

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.

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

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

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

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 Garnhamjoshua.garn...@yahoo.co.uk 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