Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: zone example update

...

Code Block
languagexml
titlePage or component template (partial)
<t:actionlinkeventlink t:idevent="someLinkupdateTime" async="true">update</t:actionlink>eventlink>
...
<t:zone t:id="timeArea" id="timeArea">
    The current time is ${currentTime}
</t:zone>
Code Block
languagejava
titlePage or component class (partial)
@Inject
private Request request;

@InjectComponent
private Zone myZone;
...
void onActionFromSomeLinkonUpdateTimek()
{
    ajaxResponseRenderer.addRender(timeArea);
} 

...