Script"

From Documentation
(4 intermediate revisions by the same user not shown)
Line 10: Line 10:
 
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.
 
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 ==
+
= Example =
  
 
[[Image:ZKComRef_Script_Example.png ]]  
 
[[Image:ZKComRef_Script_Example.png ]]  
Line 25: Line 25:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
==Alternatives==
+
=Defer the Evaluation=
  
Instead of using the script component, you could use [[ZUML_Reference/ZUML/Processing_Instructions/script|the script directive]] instead. It does not support defer, but it is more efficient since no component is created.
+
By default, the specified JavaScript code will be evaluated as soon as the page is loaded. By specifying <code>defer="true"</code>, the JavaScript code won't be evaluated until all ZK widgets are created and bound to the DOM tree.
 +
 
 +
<syntaxhighlight lang="xml">
 +
<textbox id="inp"/>
 +
<script defer="true">
 +
  this.$f("inp").setValue("initialized");
 +
</script>
 +
</syntaxhighlight>
 +
 
 +
The defer attribute can be used with a JavaScript file as shown below. Then, the JavaScript file will be loaded after all widgets are created and bound to the DOM tree.
 +
 
 +
<syntaxhighlight lang="xml">
 +
<script src="/js/foo.js" defer="true"/>
 +
</syntaxhighlight>
 +
 
 +
This is required if the script to load intends to manipulate a ZK widget's DOM elements. <code>defer="true"</code> can ensure that all widgets' DOM elements are already generated.
 +
 
 +
=Alternatives=
 +
 
 +
== script directive==
 +
Instead of using the script component, you could use [[ZUML_Reference/ZUML/Processing_Instructions/script|the script directive]] instead. It does not support <code>defer</code>, but it is more efficient since no component is created.
  
 
<source lang="xml">
 
<source lang="xml">
Line 34: Line 54:
 
</source>
 
</source>
  
where the first statement loads the debug utility and the second generates JavaScript code snippet directly.
+
where the first statement loads the debug utility and the second generates a JavaScript code snippet directly.
  
Another alternative is HTML SCRIPT.  For example, we could define global variables and functions as follows
+
==HTML script tag ==
 +
Another alternative is the HTML SCRIPT tag.  For example, we could define global variables and functions as follows
  
 
<source lang="xml">
 
<source lang="xml">
Line 47: Line 68:
 
</n:script>
 
</n:script>
 
</source>
 
</source>
 
=Defer the Evaluation=
 
 
By default, the specified JavaScript code will be evaluated as soon as the page is loaded. By specifying <code>defer="true"</code>, the JavaScript code won't be evaluated until all ZK widgets are created and bound to the DOM tree.
 
 
<syntaxhighlight lang="xml">
 
<textbox id="inp"/>
 
<script defer="true">
 
  this.$f("inp").setValue("initialized");
 
</script>
 
</syntaxhighlight>
 
 
The defer attribute can be used with a JavaScript file as shown below. Then, the JavaScript file will be loaded after all widgets are created and bound to the DOM tree.
 
 
<syntax lang="xml">
 
<script src="/js/foo.js" defer="true"/>
 
</syntax>
 
 
This is required if the script to load intends to manipulate a ZK widget's DOM elements
 
  
 
=Supported Events=
 
=Supported Events=
Line 93: Line 95:
 
|}
 
|}
  
=Version History=
+
 
{{LastUpdated}}
 
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
|-
 
| &nbsp;
 
| &nbsp;
 
| &nbsp;
 
|}
 
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Revision as of 06:47, 21 December 2023

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

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

Defer the Evaluation

By default, the specified JavaScript code will be evaluated as soon as the page is loaded. By specifying defer="true", the JavaScript code won't be evaluated until all ZK widgets are created and bound to the DOM tree.

<textbox id="inp"/>
<script defer="true">
   this.$f("inp").setValue("initialized");
</script>

The defer attribute can be used with a JavaScript file as shown below. Then, the JavaScript file will be loaded after all widgets are created and bound to the DOM tree.

<script src="/js/foo.js" defer="true"/>

This is required if the script to load intends to manipulate a ZK widget's DOM elements. defer="true" can ensure that all widgets' DOM elements are already generated.

Alternatives

script directive

Instead of using the script component, you could use the script directive instead. It does not support defer, but it is more efficient since no component is created.

<?script src="~./js/zk.debug.wpd"?>
<?script content="jq.IE6_ALPHAFIX='.png';"?>

where the first statement loads the debug utility and the second generates a JavaScript code snippet directly.

HTML script tag

Another alternative is the HTML SCRIPT tag. For example, we could define global variables and functions as follows

<n:script xmlns:n="native"><!-- use the native namespace -->
	var a_global_variable;
	function a_global_function () {
		alert("native script");
	}
	alert("you can not access this as widget but evaluated immediately");
</n:script>

Supported Events

Name
Event Type
None None

Supported Children

*NONE

Use Cases

Version Description Example Location
5.0 Overview and Tutorial Client Side Programming

ZK Client-side Reference: General Control




Last Update : 2023/12/21

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