Script
From Documentation
Revision as of 08:04, 30 April 2010 by Jumperchen (talk | contribs)
Script
Employment/Purpose
The script component is used to specify the script codes running at the browser. Notice that, unlike zscript, the script codes are running at the browser. They are usually written in JavaScript which is supported by the most of browsers. The simplest format is as follows.
Example
<zk>
<window id="win">
<button label="change color" onClick='Clients.evalJavaScript("myfunc()")' />
</window>
<script type="text/javascript">
function myfunc() {
$e("${win.uuid}").style.backgroundColor = "blue";
}
</script>
</zk>
Supported events
None | None |
Supported Children
- NONE
Use cases
Version | Description | Example Location |
---|---|---|
5.0+ |
Version History
Version | Date | Content |
---|---|---|
5.0.1 | 04/30/2010 | Initialization |