Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 employee NSArrayController

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 the NSTableView

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.