org.zkoss.zul.grid.rod"
From Documentation
Line 8: | Line 8: | ||
Using render on demand, the grid components will automatically add and remove rows depending on client scrolling. | Using render on demand, the grid components will automatically add and remove rows depending on client scrolling. | ||
On large models, this will avoid sending the full content during page rendering. | On large models, this will avoid sending the full content during page rendering. | ||
+ | |||
+ | See [https://www.zkoss.org/wiki/ZK_Developer's_Reference/Performance_Tips/Listbox,_Grid_and_Tree_for_Huge_Data/Turn_on_Render_on_Demand#ROD:_Grid, performance documentation] for additional information. | ||
Default: false | Default: false |
Latest revision as of 07:39, 9 September 2016
Property:
org.zkoss.zul.grid.rod
Applicable: globally in zk.xml via <library-property> nested in a zul file via <custom-attributes>
Set render-on-demand for grid components. Using render on demand, the grid components will automatically add and remove rows depending on client scrolling. On large models, this will avoid sending the full content during page rendering.
See performance documentation for additional information.
Default: false
<grid>
<custom-attributes org.zkoss.zul.grid.rod="true"/>
...
<library-property>
<name>org.zkoss.zul.grid.rod</name>
<value>true</value>
</library-property>
...
Version History