Turn on Render on Demand"

From Documentation
m ((via JWB))
Line 17: Line 17:
 
If you want to enable Grid ROD for the whole application, you can specify a library property called <javadoc>org.zkoss.zul.Grid</javadoc> rod with <tt>true</tt>. For example, specify the following in zk.xml:
 
If you want to enable Grid ROD for the whole application, you can specify a library property called <javadoc>org.zkoss.zul.Grid</javadoc> rod with <tt>true</tt>. For example, specify the following in zk.xml:
  
<syntax lang="xml">
+
<syntaxhighlight line lang="xml">
 
<library-property>
 
<library-property>
 
<name>org.zkoss.zul.grid.rod</name>
 
<name>org.zkoss.zul.grid.rod</name>
 
<value>true</value>
 
<value>true</value>
 
</library-property>
 
</library-property>
</syntax>
+
</syntaxhighlight>
  
 
Or, if you prefer to enable it for a particular page, then specify <tt>true</tt> to a page's attribute called <javadoc>org.zkoss.zul.Grid</javadoc> rod, such as
 
Or, if you prefer to enable it for a particular page, then specify <tt>true</tt> to a page's attribute called <javadoc>org.zkoss.zul.Grid</javadoc> rod, such as
  
<syntax lang="xml">
+
<syntaxhighlight line lang="xml">
 
<custom-attributes org.zkoss.zul.grid.rod="true" scope="page"/>
 
<custom-attributes org.zkoss.zul.grid.rod="true" scope="page"/>
</syntax>
+
</syntaxhighlight>
  
 
Or, if you prefer to enable it for all descendant grids of a particular component, then specify <tt>true</tt> to the component's attribute. You can enable it for a subset of the descendant grids. For example,
 
Or, if you prefer to enable it for all descendant grids of a particular component, then specify <tt>true</tt> to the component's attribute. You can enable it for a subset of the descendant grids. For example,
  
<syntax lang="xml">
+
<syntaxhighlight line lang="xml">
 
<window>
 
<window>
 
   <custom-attributes org.zkoss.zul.grid.rod="true"/> <!-- enable it for descendant grids of window -->
 
   <custom-attributes org.zkoss.zul.grid.rod="true"/> <!-- enable it for descendant grids of window -->
Line 46: Line 46:
 
   </div>
 
   </div>
 
</window>
 
</window>
</syntax>
+
</syntaxhighlight>
  
 
==Fixed Viewport is Required ==
 
==Fixed Viewport is Required ==
Line 62: Line 62:
 
Specifies the minimum number of rows rendered on the client.
 
Specifies the minimum number of rows rendered on the client.
 
It is only considered if Grid is using live data (<javadoc method="setModel(ListModel)">org.zkoss.zul.Grid</javadoc>) and not using paging mold (<javadoc method="getPagingChild()">org.zkoss.zul.Grid</javadoc>).
 
It is only considered if Grid is using live data (<javadoc method="setModel(ListModel)">org.zkoss.zul.Grid</javadoc>) and not using paging mold (<javadoc method="getPagingChild()">org.zkoss.zul.Grid</javadoc>).
<syntax lang="xml">
+
<syntaxhighlight line lang="xml">
 
<custom-attributes org.zkoss.zul.grid.initRodSize="30"/>
 
<custom-attributes org.zkoss.zul.grid.initRodSize="30"/>
</syntax>
+
</syntaxhighlight>
  
 
= Listbox =
 
= Listbox =
 
If you want to enable Listbox ROD for the whole application, you can specify a library property called <javadoc>org.zkoss.zul.Listbox</javadoc> rod with <tt>true</tt>. For example, specify the following in zk.xml:
 
If you want to enable Listbox ROD for the whole application, you can specify a library property called <javadoc>org.zkoss.zul.Listbox</javadoc> rod with <tt>true</tt>. For example, specify the following in zk.xml:
  
<syntax lang="xml">
+
<syntaxhighlight line lang="xml">
 
<library-property>
 
<library-property>
 
<name>org.zkoss.zul.listbox.rod</name>
 
<name>org.zkoss.zul.listbox.rod</name>
 
<value>true</value>
 
<value>true</value>
 
</library-property>
 
</library-property>
</syntax>
+
</syntaxhighlight>
  
 
Or, if you prefer to enable it for a particular page, then specify <tt>true</tt> to a page's attribute called <javadoc>org.zkoss.zul.Listbox</javadoc> rod, such as
 
Or, if you prefer to enable it for a particular page, then specify <tt>true</tt> to a page's attribute called <javadoc>org.zkoss.zul.Listbox</javadoc> rod, such as
  
<syntax lang="xml">
+
<syntaxhighlight line lang="xml">
 
<custom-attributes org.zkoss.zul.listbox.rod="true" scope="page"/>
 
<custom-attributes org.zkoss.zul.listbox.rod="true" scope="page"/>
</syntax>
+
</syntaxhighlight>
  
 
Or, if you prefer to enable it for all descendant listboxs of a particular component, then specify <tt>true</tt> to the component's attribute. And, you can enable it for a subset of the descendant listboxs. For example,
 
Or, if you prefer to enable it for all descendant listboxs of a particular component, then specify <tt>true</tt> to the component's attribute. And, you can enable it for a subset of the descendant listboxs. For example,
  
<syntax lang="xml">
+
<syntaxhighlight line lang="xml">
 
<window>
 
<window>
 
   <custom-attributes org.zkoss.zul.listbox.rod="true"/> <!-- enable it for descendant listboxs of window -->
 
   <custom-attributes org.zkoss.zul.listbox.rod="true"/> <!-- enable it for descendant listboxs of window -->
Line 98: Line 98:
 
   </div>
 
   </div>
 
</window>
 
</window>
</syntax>
+
</syntaxhighlight>
  
 
== Fixed Viewport is Required ==
 
== Fixed Viewport is Required ==
Line 115: Line 115:
 
Specifies the number of items rendered when the Listbox first render.
 
Specifies the number of items rendered when the Listbox first render.
 
It is used only if live data (<javadoc method="setModel(ListModel)">org.zkoss.zul.Listbox</javadoc>) and not paging (<javadoc method="getPagingChild()">org.zkoss.zul.Listbox</javadoc>).
 
It is used only if live data (<javadoc method="setModel(ListModel)">org.zkoss.zul.Listbox</javadoc>) and not paging (<javadoc method="getPagingChild()">org.zkoss.zul.Listbox</javadoc>).
<syntax lang="xml">
+
<syntaxhighlight line lang="xml">
 
<custom-attributes org.zkoss.zul.listbox.initRodSize="30"/>
 
<custom-attributes org.zkoss.zul.listbox.initRodSize="30"/>
</syntax>
+
</syntaxhighlight>
  
 
= Tree =
 
= Tree =

Revision as of 09:00, 24 June 2021

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png

Since 5.0.0

Overview

With ZK EE, you can enable Render on Demand for Grid, Listbox, or Tree to boost performance when showing a huge amount of data. Grid and Listbox will load only the necessary data chunk from associated ListModel, render required Row(s)/Listitem(s) on the server, then create only the required corresponding widgets and render the DOM elements really needed in the browser. It improves the performance and saves memory significantly on both the server and browser sides.

Note: ROD actually brings a performance boost on both the client-side and server-side. However, if you use forEach to populate Rows or Listitems, the components will be all in memory, which does not give you any performance benefits on the server-side. (The client-side still enjoys a boost.) If you want to fully leverage the power of ROD, using a ZK model object like ListModel is necessary.

Notice that you can enable this feature in different scopes.

Grid

If you want to enable Grid ROD for the whole application, you can specify a library property called Grid rod with true. For example, specify the following in zk.xml:

1 <library-property>
2 	<name>org.zkoss.zul.grid.rod</name>
3 	<value>true</value>
4 </library-property>

Or, if you prefer to enable it for a particular page, then specify true to a page's attribute called Grid rod, such as

1 <custom-attributes org.zkoss.zul.grid.rod="true" scope="page"/>

Or, if you prefer to enable it for all descendant grids of a particular component, then specify true to the component's attribute. You can enable it for a subset of the descendant grids. For example,

 1 <window>
 2   <custom-attributes org.zkoss.zul.grid.rod="true"/> <!-- enable it for descendant grids of window -->
 3   <grid ...>
 4     ..
 5   </grid>
 6   <div>
 7     <custom-attributes org.zkoss.zul.grid.rod="false"/> <!-- disable it for descendant grids of div -->
 8       <grid ...>
 9         ..
10       </grid>
11       ..
12   </div>
13 </window>

Fixed Viewport is Required

Note that Grid ROD will not work unless the Grid is configured with a limited view port, so the user can see only a portion of rows; i.e. you have to set one of the following attributes:

  • height
  • vflex
  • mold="paging"

Specifies the number of rows rendered

[default: 100]
[inherit: true]

Since 5.0.8

Specifies the minimum number of rows rendered on the client. It is only considered if Grid is using live data (Grid.setModel(ListModel)) and not using paging mold (Grid.getPagingChild()).

1 <custom-attributes org.zkoss.zul.grid.initRodSize="30"/>

Listbox

If you want to enable Listbox ROD for the whole application, you can specify a library property called Listbox rod with true. For example, specify the following in zk.xml:

1 <library-property>
2 	<name>org.zkoss.zul.listbox.rod</name>
3 	<value>true</value>
4 </library-property>

Or, if you prefer to enable it for a particular page, then specify true to a page's attribute called Listbox rod, such as

1 <custom-attributes org.zkoss.zul.listbox.rod="true" scope="page"/>

Or, if you prefer to enable it for all descendant listboxs of a particular component, then specify true to the component's attribute. And, you can enable it for a subset of the descendant listboxs. For example,

 1 <window>
 2   <custom-attributes org.zkoss.zul.listbox.rod="true"/> <!-- enable it for descendant listboxs of window -->
 3   <listbox ...>
 4     ..
 5   </listbox>
 6   <div>
 7     <custom-attributes org.zkoss.zul.listbox.rod="false"/> <!-- disable it for descendant listboxs of div -->
 8       <listbox ...>
 9         ..
10       </listbox>
11       ..
12   </div>
13 </window>

Fixed Viewport is Required

Note that Listbox ROD is not working unless the Listbox is configured with a limited viewport, so the user can see only a portion of listitems; i.e. you have to set one of the following attributes:

  • height
  • vflex
  • rows
  • mold="paging"

Specifies the number of items rendered

[default: 100]
[inherit: true]

Since 5.0.8

Specifies the number of items rendered when the Listbox first render. It is used only if live data (Listbox.setModel(ListModel)) and not paging (Listbox.getPagingChild()).

1 <custom-attributes org.zkoss.zul.listbox.initRodSize="30"/>

Tree

To turn off ROD for a tree, you need to specify org.zkoss.zul.tree.initRodSize with -1:

<custom-attributes org.zkoss.zul.tree.initRodSize="-1"/>

Version History

Last Update : 2021/06/24


Version Date Content
     



Last Update : 2021/06/24

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