Re: NSComboBox in NSTableView behaving strangely

2011-07-06 Thread Devarshi Kulshreshtha
same problem exists in NSPopUpButtonCell, it is changing the value in list which appears on clicking it, as shown - Original list: http://dl.dropbox.com/u/259/unique%20data.png Changed list: http://dl.dropbox.com/u/259/redundant%20data.png Bindings used in case of NSPopUpButtonCell are:

Re: NSComboBox in NSTableView behaving strangely

2011-07-05 Thread Quincey Morris
On Jul 5, 2011, at 04:11, Devarshi Kulshreshtha wrote: > When I am selecting a value in dropdown list of combobox cell, it is > changing the value of previously selected value to newly selected value, as > shown in below figure(s) - A combo box is a kind of text field, not a kind of menu, so yes

NSComboBox in NSTableView behaving strangely

2011-07-05 Thread Devarshi Kulshreshtha
Hi All, I am trying a sample application, which enlists some entities to purchase and their respective cost. In data model I created two entities: 1. Daily Transaction (Attribute: cost, Relationship: relatedEntity) 2. Entity (Attribute: name, Relationship: dailyTransactions) Controls used in XI