Hello

I have to problem, that I would like to send two parameters (properties) with 
my request (histId and Nr). The table code in my jsp looks like this:

<%
     ArrayList HistList = null;
     Dao dao = new Dao();         
     String id = MyModify.getId();
     HistList = dao.HistList(id);
    request.setAttribute("myBeanName", HistList);    
%>

       <display:table name="myBeanName"
                        export="true"
                        pagesize="10"
                        requestURI="">
                                              
       <display:column property="histId"
                            title="HistId"                            
                                sortable="true"                                 
                               
                                width="8%" />                 

      <display:column property="modifyDate"
                           title="Letzte Änderung"                        
                               sortable="true"                                  
                      
                               width="10%" />   

      <display:column property="Nr"
                           title="Nr."                                
                               href="FrontControllerCVE?cmdModify=show"
                           paramId="id"                                       
                               width="12%" />

     <display:column property="category"
                          title="Kategorie"                           
                              width="15%" />

     <display:column property="status"
                          title="Status"                              
                              sortable="true"
                          width="15%" />

     <display:column property="hod"
                          title="HoD"                                 
                              width="5%" />

     <display:column property="actions"
                          title="Bemerkungen"                                 
                              width="35%" />

     <display:setProperty name="export.pdf" 
                                    value="true" />        
    </display:table>    

In the projekt documentation can I red, that I have to use a decorator for this 
problem (with my code above, only one parameter could be sent).

So, im not the great java programmer, have anybody a code snipplet or something 
else that can help me ;-) ?

Thanks in advanced.

Jürg




-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
displaytag-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to