javascript"

From Documentation
(Created page with '{{ZKDevelopersReferencePageHeader}} '''Syntax:''' <javascript package="''pkg_name''" [merge="'''false'''|true"]/> <javascript src="''a_uri''"/> It specifies the JavaScript pa…')
 
Line 27: Line 27:
  
 
It is used with the <tt>package</tt> attribute to specify whether the package shall be loaded as part of the <tt>zk</tt> package. If not specified, each package will be loaded separatedly. It speed up the loading if we merge several packages into one.
 
It is used with the <tt>package</tt> attribute to specify whether the package shall be loaded as part of the <tt>zk</tt> package. If not specified, each package will be loaded separatedly. It speed up the loading if we merge several packages into one.
 +
 +
For more information, please refer to the [[ZK Developer's Reference/Performance Tips/Minimize the number of JavaScript Files to Load|Performance Tips]] section.
  
 
=Version History=
 
=Version History=

Revision as of 06:18, 19 November 2010

Syntax:

<javascript package="pkg_name" [merge="false|true"]/>
<javascript src="a_uri"/>

It specifies the JavaScript package or file that has to be loaded to the client. Notice that, if specified, it is always loaded, no matter if it is required or not.

Example,

<javascript package="zul.box"/>

package

[Optional]

It specifies the package to load.

src

[Optional]

It specifies the URI of the JavaScript file to load. The URI could contain ~./ (such as "~./foo/whatever.js") to load a JavaScript file from the classpath.

merge

[Optional][Default: false]

It is used with the package attribute to specify whether the package shall be loaded as part of the zk package. If not specified, each package will be loaded separatedly. It speed up the loading if we merge several packages into one.

For more information, please refer to the Performance Tips section.

Version History

Last Update : 2010/11/19


Version Date Content
     



Last Update : 2010/11/19

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