Hi All, I want to use display tag for displaying the data i have put the displaytag.jar file in the lib folder. i have an action class which is returnig the required data in an array list
* public* ArrayList<ItemTypeBean> getItemCodeList() { *return* itemCodeList; } i am trying to use the display table tag* *in my jsp in the following manner <s:set value="itemCodeList" scope="request" name="itemCodeList"/> <display:table name="itemCodeList" id="itemCodeList" pagesize="5"> <display:column property="TypeCode" sortable="true" title="Item Code"/> <display:column property="TypeName" sortable="true" title="Item Name" ></ display:column> </display:table> i have also imported the displaytag* in my jsp in the following way* <%@ taglib uri="http://displaytag.sf.net" prefix="display" %> but on adding this it is giving exception and i will remove this taglib eveything is working fine yes the data is not being displyed if any body have any idea how to configure display tag in struts2 pleaes provider the pointer towards this. any help in this regard will be much appriciated. aum **