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