1.

Can I Use The Same Component Multiple Times In One Template?

Answer»

No – but you can copy the definition of a component pretty EASILY.

<component ID="valueInsert" type="Insert" >
<binding name="value" expression="getValueAt( rowIndex, columnIndex )" />
</component>

<component id="valueInsert1" copy-of="valueInsert"/>
<component id="valueInsert2" copy-of="valueInsert"/>
<component id="valueInsert3" copy-of="valueInsert"/>
<component id="valueInsert4" copy-of="valueInsert"/>

No – but you can copy the definition of a component pretty easily.

<component id="valueInsert" type="Insert" >
<binding name="value" expression="getValueAt( rowIndex, columnIndex )" />
</component>

<component id="valueInsert1" copy-of="valueInsert"/>
<component id="valueInsert2" copy-of="valueInsert"/>
<component id="valueInsert3" copy-of="valueInsert"/>
<component id="valueInsert4" copy-of="valueInsert"/>



Discussion

No Comment Found