Biglistbox Template"

From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} Similar to Listbox, you can render a biglistbox with a template. However, not...")
 
Line 5: Line 5:
 
<source lang="xml" high="1,5,10">
 
<source lang="xml" high="1,5,10">
 
<biglistbox hflex="1" vflex="1" model="${data}" >
 
<biglistbox hflex="1" vflex="1" model="${data}" >
     <!-- Template example
+
     <!-- Template example -->
 
     <template name="heads">
 
     <template name="heads">
 
         <html><![CDATA[
 
         <html><![CDATA[
    <div class="images_${matrixInfo[0]%28}" title="x=${matrixInfo[0]},y=${matrixInfo[1]}">${each[matrixInfo[0]]}</div>
+
                <div class="images_${matrixInfo[0]%28}" title="x=${matrixInfo[0]},y=${matrixInfo[1]}">${each[matrixInfo[0]]}</div>
 
         ]]></html>
 
         ]]></html>
 
     </template>
 
     </template>
 
     <template name="rows">
 
     <template name="rows">
 
         <html><![CDATA[
 
         <html><![CDATA[
    <div class="images_${matrixInfo[0]%28}" title="x=${matrixInfo[0]},y=${matrixInfo[1]}">${each[matrixInfo[0]]}</div>
+
                <div class="images_${matrixInfo[0]%28}" title="x=${matrixInfo[0]},y=${matrixInfo[1]}">${each[matrixInfo[0]]}</div>
 
         ]]></html>
 
         ]]></html>
     </template> -->
+
     </template>
 
</biglistbox>
 
</biglistbox>
 
</source>
 
</source>

Revision as of 03:17, 13 January 2017


Biglistbox Template


Similar to Listbox, you can render a biglistbox with a template. However, notice that, unlike other components, biglistbox doesn't allow any child component, so you have to render each item as a string. For example,

<biglistbox hflex="1" vflex="1" model="${data}" >
    <!-- Template example -->
    <template name="heads">
        <html><![CDATA[
                <div class="images_${matrixInfo[0]%28}" title="x=${matrixInfo[0]},y=${matrixInfo[1]}">${each[matrixInfo[0]]}</div>
        ]]></html>
    </template>
    <template name="rows">
        <html><![CDATA[
                <div class="images_${matrixInfo[0]%28}" title="x=${matrixInfo[0]},y=${matrixInfo[1]}">${each[matrixInfo[0]]}</div>
        ]]></html>
    </template>
</biglistbox>

As you can see, we utilize two attributes - rowIndex & colIndex from the matrixInfo object to receive the current index during template rendering phase.

where we assume there is a matrix model (FakerMatrixModel) called data such as:

FakerMatrixModel model = new FakerMatrixModel(100, 100);

Version History

Last Update : 2017/01/13


Version Date Content
6.0.1 March 2012 The biglistbox component was introduced.



Last Update : 2017/01/13

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