Re: Switching between editable and not in a NSTableView
Re: Switching between editable and not in a NSTableView
- Subject: Re: Switching between editable and not in a NSTableView
- From: Frank Blome <email@hidden>
- Date: Mon, 3 Jun 2002 16:04:36 +0200
On Montag, Juni 3, 2002, at 03:49 PM, Peter Horn wrote:
is there really no way to switch the editable mode of a cell in a
NSTableView programmaticly? I've look over the documentation, but I can'
t find it...
What about setEditable:? (Cf. NSText Documentation)
This was my first try. Unfortunatley it failed. While loading my
preferences, I tried this:
<snipp>
NSTableColumn *typeColumn = [table tableColumnWithIdentifier:@"filterRow"]
;
[typeColumn setEditable:YES];
</snipp>
And the compiler told me: "NSTableColumn does not respond to 'setEditable:
'
Frank
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.