Explorer
The user interface associated with the “explorer” tag is produced by the following class template: com.axemble.vdp.ui.framework.composites.xml.XMLExplorer
.
The provider class to be used must extend com.axemble.vdp.ui.core.providers.base.AbstractExplorerProvider
.
Example
<explorer name="DEMO_EXPLORER" action="action1" showhistory="false" provider="com.axemble.education.providers.demo.DemoExplorerProvider">
<options>
<option label="LG_BACKTOPORTAL">
<action class="external" name="browse"/>
</option>
<option name="administration" label="LG_ADMINISTRATION">
<action class="catalog" name="browse"/>
</option>
</options>
<tabs>
<tab name="TAB1" label="LG_TAB1" default="true" >
<links>
<link name="LINK1" label="LG_LINK1" default="true">
<view name="DEMO" label="LG_DEMO" selectable="true" provider="com.axemble.education.providers.demo.DemoViewProvider" paginable="true" filterable="true">
<image name="properties">
<action class="DEMO" name="edit"/>
</image>
<column name="column1" label="LG_COLUMN1" zone="title"/>
<column name="column2" label="LG_COLUMN2"/>
</view>
</link>
<link name="LINK2" label="LG_LINK2">
...
</link>
...
</links>
</tab>
</tabs>
</explorer>