Zone Update issue

2010-06-04 Thread springinaction
I have the following structure in my DOM: ... The zone is defined like that: @Component private Zone someZone; and updated via a MultiZoneUpdate: return new MultiZoneUpdate("someOtherZone", someOtherZone).add("someZone", someZone); After the zone update the DOM looks like t

MultiZoneUpdate in page triggered by event in component

2010-06-09 Thread springinaction
I have the following scenario. I have a component on a page, that should be able to update zones on the page class. SomePage | | --- zoneA | | --- zone B | --- someComponent | | On an action in someComponent (link or form submit) zoneA and zoneB need to get updated without re-loading the

Re: Zone Update issue

2010-06-09 Thread springinaction
enable ajax refresh > on sort and navigation. > > 2010/6/4 springinaction > >> >> I have the following structure in my DOM: >> >> >> >> ... >> >> >> >> The zone is defined like that: >> >> @Component >