Hi,
I have an application which manages, among other things, a list of
rooms. In my UI, I have two different controls that use this list. I
have a MenuBar that has an option that allows you to switch to an
existing room or switch to a new room, like this:
Switch to...
New room...
Room A <--My ArrayCollection of roomnames starts here
Room B
Room C
Elsewhere I have a control that allows the user to copy something from
this room to an existing room or a new room. Like this:
O [New room] <-- Radio button followed by textfield
O Room A <-- Radio button followed by combo box
Room B populated by same room names as above
Room C
The trouble is the "New room" option in the first example. Is there a
way to get that into my MenuBar without affecting the underlying
roomnames ArrayCollection? I need to be able to update the roomnames
AC independently, and (hopefully) have data binding take care of
updating these UI controls. Can it be done?
Many thanks,
OK
DAH