Govind - 2007-02-09

Hi,

Is it possible to hide
<display:table name="somelist" pagesize="somesize" requestedURI="someURI">>

I am trying to display the Prev/Next/First/Last in my jsp and since it is attached to the List I am unable to separate the "Prev/Next/Last" from the display:column attributes.

I believe I have addressed it correctly. Please If friends know the solution then please tell me

<tr>
<td align="right">
<display:table name="sessionScope.someList" pagesize="1" requestURI='some URI'>
<display:column/>
</display:table>
</td>
</tr>

I want to hide the second <display:table .so on.........> so that the upper <display:table prints the value in the rightmost side and i do not want it again to be printed in the div box again

<display:table name="sessionScope.some List" pagesize="1" requestURI='some URI'>
<div class="contentBox">
<table>
<display:column property="Id"/>
<display:column property="name"/>
<display:column property="address"/>
<display:column property="age"/>
<display:column property="sex"/>
</table>
</div>
</display:table>

Waiting for your reply