I have a component (ItemTree) which has 3 embeded components. The first (ItemTreeList) is a list of items to select. The second (ItemGIDE) shows properties for the item you selected.
How do I tell ItemGIDE to update when a new selection is made on ItemTreeList?
Firstly, This is more complicated than I'm making it out to be. The ItemTreeList has hirarchy with node types and node instances. It has collapsable divs and when clicking on either a top level hirarchy item or an instance below, will set various variables on other objects. So, a whole lot happens on a single click. I've got the ItemTreeList to update itself without refreshing the whole page. Just need to 'Announce' to the other component (ItemGIDE) that it needs to refresh (Again without refreshing the whole page).
- I've got Jquery and Ajax at hand.
- I'm using Visualage Smalltalk 8.5.0 with Seaside 3.0. -I've been thinking about a call to ItemTree to tell its sub components to update?
- I've been thinking about using 'announce' to 'announce' to other components to update?
- I've been doing actual programming for less than 6 months?