Skip to content

4.4 View

The View component serves as a container for various subcomponents that enhance the presentation and functionality of the user interface.

Attribute Default Value Type Description
id null String Unique identifier of the component. If not defined, the default id will be formId#edit. If more than one edit form is defined, a numeric suffix will be added.
<main id="formView" name="View" repo="pruebaRepo">
    <list id="listView" name="View">
        <buttonbar type="fab">
            <button id="btnFab">
                <action id="accionFAB" type="nav" route="formView-view1">
                    <param name="repo" value="pruebaRepo"/>
                </action>
            </button>
        </buttonbar>
    </list>
    <view id="view1">
        <p value="Paragraph" />
    </view>
</main>

img.png

4.4.1 View Components