Defer the Creation of Child Components

From Documentation
Revision as of 11:06, 8 February 2012 by Tomyeh (talk | contribs)


DocumentationZK Developer's ReferencePerformance TipsDefer the Creation of Child Components
Defer the Creation of Child Components


For sophisticated pages, the performance can be improved if we defer the creation of child components until they are becoming visible. The simplest way to do this is by the use of the fulfill attribute. In the following example, the children of the second tab panel are created only if it becomes visible.

<syntax lang="xml" > <tabbox>

   <tabs>
       <tab label="Preload" selected="true"/>
       <tab id="tab2" label="OnDemand"/>
   </tabs>
   <tabpanels>
       <tabpanel>

This panel is pre-loaded since no fulfill specified

       </tabpanel>
       <tabpanel fulfill="tab2.onSelect">

This panel is loaded only tab2 receives the onSelect event

       </tabpanel>
   </tabpanels>

</tabbox> </syntax>

For more information, please refer to the On-demand Evaluation section.

Version History

Last Update : 2012/02/08


Version Date Content
     



Last Update : 2012/02/08

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