Skip to end of banner
Go to start of banner

2.2.1.3. Details

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »

Description

This tag is used to define the layout of the details area.

 

Attributes

NameDescriptionValues
viewThe way tabs are presented in the details area. In default view tabs are presented the one next to the other. In list view they are presented the one under the other.default, list
defaulttabidThe default tab that opens when page loads.The tab id.
tabsThe list of tabs the page contains.A list of tabs.

 

Examples

 

Data entry page with details area in list view

 

Details area in list view
<details>
        <view>list</view>
        <defaulttabid>tabCategories</defaulttabid>
        <tabs>
            <tab>
                <id>tabPaymentMethods</id>
                ...
            </tab>

            <tab>
                <id>tabCategories</id>
               ...
            </tab>

            <tab>
                <id>file:networkmanagement/allowedOrgUnits.xml</id>
                ...
            </tab>
        </tabs>
    </details>

 

Data entry page with details area in default view

Details area in default view
<details>
        <view>default</view>
        <defaulttabid>tabCategories</defaulttabid>
        <tabs>
            <tab>
                <id>tabPaymentMethods</id>
                ...
            </tab>

            <tab>
                <id>tabCategories</id>
               ...
            </tab>

            <tab>
                <id>file:networkmanagement/allowedOrgUnits.xml</id>
                ...
            </tab>
        </tabs>
    </details>
  • No labels