Script"

From Documentation
m
Line 39: Line 39:
 
=Supported Children=
 
=Supported Children=
  
*NONE
+
*NONE
  
 
=Use cases=
 
=Use cases=
Line 46: Line 46:
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
| 5.0+
+
|  
 
|  
 
|  
 
|  
 
|  
Line 56: Line 56:
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
| 5.0.1
+
| 5.0.2
 
| 04/30/2010
 
| 04/30/2010
 
| Initialization
 
| Initialization

Revision as of 03:13, 14 May 2010

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

ZKComRef Script Example.png

 <zk>
	<window id="win">
		<button label="change color" onClick='Clients.evalJavaScript("myfunc()")' />
	</window>
	<script type="text/javascript">
		function myfunc() {
		jq("$win").css("backgroundColor", "blue");
		}
 </script>
</zk>

Supported events

Name
Event Type
None None

Supported Children

*NONE

Use cases

Version Description Example Location
     

Version History

Version Date Content
5.0.2 04/30/2010 Initialization



Last Update : 2010/05/14

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