Product Selector

Fusion 5.12
    Fusion 5.12

    content:radio

    Description

    Creates a radio button

    Usage

    as element:

    <content:radio
           label="{string}"
           field="{string}"
           value="{string}">
    </content:radio>

    Parameters

    Param Type Details

    label

    string

    The label for the textarea

    field

    string

    The name of the field.

    value

    string

    The value of the field when selected

    Example

    Source

    <h3 id="example_stacked">Stacked</h3>
    <content:form styling="form-stacked">
        <content:radio label="Test" field="test" value="tested"></content:radio>
        <content:radio label="Do not test" field="test" value="untested"></content:radio>
    </content:form>