RE: Re: NSTableView in-line editing

2008-11-25 Thread 양승준
EMAIL PROTECTED]> Cc: "양승준"<[EMAIL PROTECTED]>; cocoa-dev@lists.apple.com Sent: 08-11-25(화) 22:45:58 Subject: Re: NSTableView in-line editing Le 25 nov. 08 à 14:23, Graham Cox a écrit : > > On 26 Nov 2008, at 12:16 am, Jean-Daniel Dupas wrote: > >>>

Re: NSTableView in-line editing

2008-11-25 Thread Jean-Daniel Dupas
Le 25 nov. 08 à 14:23, Graham Cox a écrit : On 26 Nov 2008, at 12:16 am, Jean-Daniel Dupas wrote: -(void)tableView:(NSTableView *)aTableView setObjectValue:anObject objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex { id theRecord; theRecord = [aBuffer objectAtIndex:ro

Re: NSTableView in-line editing

2008-11-25 Thread Graham Cox
On 26 Nov 2008, at 12:23 am, Graham Cox wrote: -(void)tableView:(NSTableView *)aTableView setObjectValue:anObject objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex Actually, that's it... the method name has a rather major typo. It should be -tableView: setObjectVa

Re: NSTableView in-line editing

2008-11-25 Thread Graham Cox
On 26 Nov 2008, at 12:16 am, Jean-Daniel Dupas wrote: -(void)tableView:(NSTableView *)aTableView setObjectValue:anObject objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex { id theRecord; theRecord = [aBuffer objectAtIndex:rowIndex]; [theRecord setObject:anObject forKey:[

Re: NSTableView in-line editing

2008-11-25 Thread Jean-Daniel Dupas
Le 25 nov. 08 à 13:52, 양승준 a écrit : Hello, I followed instructions from websites and apples' table view programming guide to implement a table view that displays an NSMutableArray of NSMutableDictionary's. Data show up in the table view alright. But in-line editing is not working. I can

NSTableView in-line editing

2008-11-25 Thread 양승준
Hello, I followed instructions from websites and apples' table view programming guide to implement a table view that displays an NSMutableArray of NSMutableDictionary's. Data show up in the table view alright. But in-line editing is not working. I can double click a cell, enter a number, but whe