You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Argo Vilberg <wi...@gmail.com> on 2008/09/07 17:41:03 UTC

T5: grid and table caption

hi,



How to use html table caption with tapestry grid?

I want that tapestry generate this like code:

<table class="t-data-grid"><thead>
    <caption>
            Lepinguprojektide jaotus
        </caption>
<tr>


if i use t:grid like this

        <t:grid
                source="lepingList" rowsPerPage="10" pagerPosition="bottom"
                include="nimetus,loodud,muudetud,silt"
                t:rowClass="prop:evenodd.next"
                row="leping"
                caption="Viimased lepingud">
            </t:grid>



then tapestry generate:
<table caption="Viimased lepingud" class="t-data-grid"><thead>


Any ideas?


Argo