Use Live Data and Paging"

From Documentation
Line 5: Line 5:
 
In additions, the performance will be improved more if you also use the paging mold such as
 
In additions, the performance will be improved more if you also use the paging mold such as
  
<source lang="xml>
+
<source lang="xml">
 
<listbox model="${mymodel}" mold="paging">
 
<listbox model="${mymodel}" mold="paging">
 
...
 
...

Revision as of 11:24, 9 March 2011

Sending out a listbox/grid/tree with a lot of items to the client is expensive. In addition, the JavaScript engines of some browsers are not good for initializing a listbox/grid/tree with a lot of items. A better solution is to use the live data, i.e., by assigning a model (such as ListModel) to it. Then, the items are sent to the client only if they become visible.

In additions, the performance will be improved more if you also use the paging mold such as

<listbox model="${mymodel}" mold="paging">
...

For more information of using and implementing a model, please refer to the Model section and ZK Component Reference: Listbox.

Version History

Version Date Content
     



Last Update : 2011/03/09

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