indentFields

Description: Creates a scope where all enclosed input elements are indented.

JavaDoc: Click here

Remarks: This component is relevant for indenting radioField items inside a radioGroup tag.

Body content: JSP context.

Attributes:

Name Description Data type Required Default value
label The label for the new group String No -
tip A tip regarding the current group of form items String No -
help A help content for the current group of form items String No -
groupLabel Label text format and spacing normalization String No True

Examples:

<dif:document>
    <dif:form>
        <dif:radioGroup label="${messages.groupLabel}" options="${stage.lovs.optionList}">
            <dif:indentFields label="${messages.subGroup1}">
                <dif:radioField id="option1" />
                <dif:radioField id="option2" />
            </dif:indentFields>
            <dif:indentFields label="${messages.subGroup2}">
                <dif:radioField id="option3" />
                <dif:radioField id="option4" />
                <dif:radioField id="option5" />
                <dif:radioField id="option6 />
            </dif:indentFields>
        </dif:radioGroup>
    </dif:form/>
    ...
</dif:document>

See also:

Back to tag reference