I have many department objects and many employees belonging to a single department. (Simple to-many relationship). I want the user to be able to select a department and then select an employee in every department. The model should save the selection in departent->employeeOfTheMonth.
I tried the following: I created two NSArrayControllers and two NSTableViews. Now the user can select a department and can select an employee. But when the user changes the department the previously selected employeeOfTheMonth does not get selected. That's my problem: How do I select the previously selected employeeOfTheMonth and manage the selection.
I tried the following:
- Observer
selectedObjects(or any other property) of the employeeNSArrayController
The problem with this approach is: I cannot distinguish between "the user selects a different employeeOfTheMonth" and "the user selects a different department" because selectedObjects gets changed anyway.
- Use
tableViewSelectionDidChange:of theNSTableView
I have the same problem here. The table view updates when the department switches.
I am sure there is a very simple solution to this problem that I dont't see. Thank you
