Re: Observing changes in Table

2014-12-17 Thread Lee Ann Rucker
On Dec 17, 2014, at 8:12 AM, Jerry Krinock wrote: > >> On 2014 Dec 17, at 07:23, Keary Suska wrote: >> >> By not using NSMutableDictionary ;-) > > Yes, that is good advice. I’m also worried that you’ve interposed this > NSMutableDictionary in between your array controller and your actual d

Re: Observing changes in Table

2014-12-17 Thread Jerry Krinock
> On 2014 Dec 17, at 07:23, Keary Suska wrote: > > By not using NSMutableDictionary ;-) Yes, that is good advice. I’m also worried that you’ve interposed this NSMutableDictionary in between your array controller and your actual data model. Don’t do that. Bind to the data model directly. A

Re: Observing changes in Table

2014-12-17 Thread Keary Suska
On Dec 17, 2014, at 3:02 AM, Gerriet M. Denkmann wrote: > A TableView with an ArrayController which has an Array of > MutableDictionaries; keys corresponding to TableColumns. > The table is editable and the dictionary of the edited row gets changed. > > All as expected. > > But I want to know

Re: Observing changes in Table

2014-12-17 Thread Ken Thomases
On Dec 17, 2014, at 7:10 AM, Gerriet M. Denkmann wrote: > TableView has textDidEndEditing, but this is deprecated. > The delegate has ...shouldEditTableColumn... but I need ...didEdit... > > The table is cell-based. -textDidEndEditing: is only deprecated in the sense that all methods specific

Re: Observing changes in Table

2014-12-17 Thread Gerriet M. Denkmann
> On 17 Dec 2014, at 18:32, Jerry Krinock wrote: > > >> On 2014 Dec 17, at 02:02, Gerriet M. Denkmann wrote: >> >> A TableView with an ArrayController which has an Array of >> MutableDictionaries; keys corresponding to TableColumns. >> The table is editable and the dictionary of the edited r

Re: Observing changes in Table

2014-12-17 Thread Jerry Krinock
> On 2014 Dec 17, at 02:02, Gerriet M. Denkmann wrote: > > A TableView with an ArrayController which has an Array of > MutableDictionaries; keys corresponding to TableColumns. > The table is editable and the dictionary of the edited row gets changed. > > But I want to know when any value of an