Product Selector

Fusion 5.12
    Fusion 5.12

    Row tag

    Table of Contents

    The Table Row tag specifies how rows of the results table should be formatted. The tag must be nested within a Table Body tag.

    Usage

    Place the Row tag inside the body of a Table Body tag. It contains nested Cell tags, one for every table column.

    <table:result-list response="response">
        ...
        <table:body>
            <table:row>
                <table:cell name="full_name" query="query"></table:cell>
                <table:cell name="address"></table:cell>
                <table:cell name="dob" date-format="dd/MM/yyyy"></table:cell>
            </table:row>
        </table:body>
    </table:result-list>