Use Live Data and Paging"
From Documentation
m |
|||
Line 14: | Line 14: | ||
=Version History= | =Version History= | ||
− | + | {{LastUpdated}} | |
{| border='1px' | width="100%" | {| border='1px' | width="100%" | ||
! Version !! Date !! Content | ! Version !! Date !! Content |
Revision as of 11:09, 8 February 2012
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 addition, 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 |
---|---|---|