Hello all

I want to know if it is possible to sort a parent table with a column which is a 
member of a netsted table.
If i sort the column by clicking on his title, the sort is done only inside the nested 
table.It is normal,  but is it exist a way to sort all nested tables between them when 
i click on the title of the column of parent table which contains nested tables ? i 
have tried this code  but it doesnt work : (in this code, i want  sort with the column 
"numero")

Sorry for my english, it is not my primary language :)

Thanks for any help !

<display:table   name="sessionScope.listeDeProduits" id = "parent" border = "1"   
decorator="decorateurs.Decorateur" pagesize = "25"  sort = "list"  defaultsort="6">

        <display:column title="Numero" ><%= parent_rowNum %></display:column>
        <display:column property="nom" title="Nom"  />
        <display:column property="type" title="Type"/>
        <display:column property="description" title="Description"  maxLength = "10"/>
        <display:column property="prixUnitaire" title="Prix Unitaire"  />

        <display:column title="Addresses" sortable="true">

                <display:table name="pageScope.parent.endroits" sort = "list" 
id="child"  defaultsort="3">
                        <display:column property="ville" title="Ville"/>
                        <display:column property="rue" title="Rue"/>
                        <display:column property="numero" title="Numero" 
sortable="true"/>
                </display:table>

        </display:column>

</display:table>



-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
displaytag-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to