Sunday, December 12, 2010

display tag : http://displaytag.sourceforge.net/1.2/tut_basic.html

 

<display:table  name="cvList"  uid="cv" >
    <display:column style="width:30;" > <input type="radio"  name="selectRadio" value="${cv.id}"/>   </display:column>
    <display:column style="width:30;"> <a href="TestListBfr.do?id=${cv.id}">${cv.name}</a>  </display:column>
    <display:column style="width:30;" property="faculty" ></display:column>
    <display:column style="width:30;" property="department"></display:column>
    <display:column style="width:30;" property="email"></display:column>
    <display:column style="width:30;" property="mobileNo"></display:column>
   
    <display:column style="width:30" >
    <logic:iterate id="test" collection="${cv.tests}" >
    <font color="blue" style="font-family: serif; font-weight: bold;"> ${ test.testTypeBean.testType}  : </font>
    <br/>
     </logic:iterate>
     </display:column>
   
    <display:column style="width=30" ><a href="${cv.filePath}">
    <html:img src="images/download.jpg" style="height:20px; width:20px;border:0px" /></a>
     </display:column>
   
    <display:column style="width=30" >
    <a href="CVDelete.do?id=${cv.id}>">
    <html:img src="images/delete.jpg" style="height:20px; width:20px ;border:0px" /></a>
    </display:column>
   
    </display:table>

No comments:

Post a Comment