How to Select a Different Scripting Language
From Documentation
Revision as of 07:29, 16 July 2010 by Maya001122 (talk | contribs) (Created page with '{{ZKDevelopersGuidePageHeader}} A page could have scripts in multiple different scripting language. <source lang="xml" > <button onClick="javascript:do_something_in_js()"/> <zs…')
This documentation is for an older version of ZK. For the latest one, please click here.
A page could have scripts in multiple different scripting language.
<button onClick="javascript:do_something_in_js()"/>
<zscript language="groovy">
do_something_in_Groovy();
</zscript>
If the scripting language is omitted, Java is assumed. If you'd like to change the default scripting language, use the page directive as follows.
<?page zscriptLanguage="Groovy"?>
<zscript>
def name = "Hello World!";
</zscript>