Use zscript to initialize

From Documentation
Revision as of 03:56, 15 July 2010 by Maya001122 (talk | contribs) (Created page with '{{ZKDevelopersGuidePageHeader}} In Page Initial Phase, ZK processes the processing instructions, called <tt>init</tt>. Use <tt>zscript</tt> to init the page,simply specify a f…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Use zscript to initialize


Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


In Page Initial Phase, ZK processes the processing instructions, called init.

Use zscript to init the page,simply specify a file containing the scripting codes with the zscript attribute, as follows. Then, the file will be interpreted at the Page Initial phase.

For example:

<?init zscript="/my/init.zs"?>

Notice that the page is not yet attached to the desktop when the Page Initial phase executes.

Use java to init the page, simply specify a class with class attribute, an instance of the specified class is constructed, and then its doInit method is called.

For example:

<?init class="MyInit"?>



Last Update : 2010/07/15

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.