Re: Beginner TableView Questions

2008-04-09 Thread Peter Zegelin
Thanks Graham - exactly what I needed. kind regards, Peter On 09/04/2008, at 10:07 PM, Graham Cox wrote: If you implement the method: - (void)tableView:(NSTableView *)aTableView setObjectValue:anObject forTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex in your datasource it

Re: Beginner TableView Questions

2008-04-09 Thread Graham Cox
If you implement the method: - (void)tableView:(NSTableView *)aTableView setObjectValue:anObject forTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex in your datasource it will be called when the checkbox changes state - will be the value of the checkbox as an NSNumber and 's i

Re: Beginner TableView Questions

2008-04-09 Thread Ron Fleckner
On 09/04/2008, at 5:43 PM, Peter Zegelin wrote: I have an NSTableView with several columns of checkboxes. Each of my columns has an identifier. I also have an NSObjectController subclass acting as both data source and delegate. I can populate the table with some data. However I am stuck o