value - Value (Extension Library - object)
Specifies an object to be displayed.
Category
basicsSyntax
value="object"
Usage
In Design mode, click All Properties and look for value under basics.Examples
This multi-image control displays one of three images depending on the selection made in a combo box.<xe:multiImage id="multiImage1"
value="#{javascript:return getComponent('djComboBox1').value}">
<xe:this.icons>
<xe:iconEntry url="/binary.gif" alt="binary"
selectedValue="binary">
</xe:iconEntry>
<xe:iconEntry url="/folder.gif" alt="folder"
selectedValue="folder">
</xe:iconEntry>
<xe:iconEntry url="/link.gif" alt="link"
selectedValue="link">
</xe:iconEntry>
</xe:this.icons>
</xe:multiImage>
<xe:djComboBox id="djComboBox1" defaultValue="binary">
<xp:selectItem itemLabel="binary"></xp:selectItem>
<xp:selectItem itemLabel="folder"></xp:selectItem>
<xp:selectItem itemLabel="link"></xp:selectItem>
<xp:eventHandler event="onChange" submit="true"
refreshMode="complete">
</xp:eventHandler>
</xe:djComboBox>