Re: Binding an Array of Dictionaries

2009-12-13 Thread Gerriet M. Denkmann
On 13 Dec 2009, at 23:50, Keary Suska wrote: > On Dec 12, 2009, at 10:35 PM, Gerriet M. Denkmann wrote: > >> Well, not quite. >> As I stated in some previous post in this thread, the NSDictionaryController >> (bound to "currentDictionary") fills an editable NSTableView. >> And if the user edits

Re: Binding an Array of Dictionaries

2009-12-13 Thread Keary Suska
On Dec 13, 2009, at 9:50 AM, Keary Suska wrote: >> Well, not quite. >> As I stated in some previous post in this thread, the NSDictionaryController >> (bound to "currentDictionary") fills an editable NSTableView. >> And if the user edits some key or value in this NSTableView the >> NSDictionaryC

Re: Binding an Array of Dictionaries

2009-12-13 Thread Keary Suska
On Dec 12, 2009, at 10:35 PM, Gerriet M. Denkmann wrote: > Well, not quite. > As I stated in some previous post in this thread, the NSDictionaryController > (bound to "currentDictionary") fills an editable NSTableView. > And if the user edits some key or value in this NSTableView the > NSDiction

Re: Binding an Array of Dictionaries

2009-12-12 Thread Gerriet M. Denkmann
On 12 Dec 2009, at 23:48, Keary Suska wrote: > > On Dec 11, 2009, at 10:36 PM, Gerriet M. Denkmann wrote: > >> realContent (which contains the NSDictionary). >> >> And now I can bind the content of the NSDictionaryController to >> NSArrayController selection.realContent and everything works p

Re: Binding an Array of Dictionaries

2009-12-12 Thread Keary Suska
On Dec 11, 2009, at 10:36 PM, Gerriet M. Denkmann wrote: > realContent (which contains the NSDictionary). > > And now I can bind the content of the NSDictionaryController to > NSArrayController selection.realContent and everything works perfectly - > changes done in the TableView of my Diction

Re: Binding an Array of Dictionaries

2009-12-11 Thread Gerriet M. Denkmann
On 11 Dec 2009, at 22:54, Keary Suska wrote: > On Dec 11, 2009, at 12:45 AM, Gerriet M. Denkmann wrote: > >> I have a window with an NSTableView which is bound to an NSArrayController >> which has as content an NSMutableArray called "theArrayOfDictionaries". >> Works fine. >> >> "theArrayOfDic

Re: Binding an Array of Dictionaries

2009-12-11 Thread Keary Suska
On Dec 11, 2009, at 12:45 AM, Gerriet M. Denkmann wrote: > I have a window with an NSTableView which is bound to an NSArrayController > which has as content an NSMutableArray called "theArrayOfDictionaries". > Works fine. > > "theArrayOfDictionaries" contains NSMutableDictionaries. > So I added

Binding an Array of Dictionaries

2009-12-10 Thread Gerriet M. Denkmann
I have a window with an NSTableView which is bound to an NSArrayController which has as content an NSMutableArray called "theArrayOfDictionaries". Works fine. "theArrayOfDictionaries" contains NSMutableDictionaries. So I added another NSTableView to my window, bound to an NSDictionaryController,