query on display tag
Posted
by sarah
on Stack Overflow
See other posts from Stack Overflow
or by sarah
Published on 2010-04-13T03:53:55Z
Indexed on
2010/04/13
4:03 UTC
Read the original article
Hit count: 220
java
Hi,
I have the following code to display
<display:table name="sessionScope.userList" id="userList" export="false" pagesize="1">
<display:column title="Select" style="width: 90px;">
<input type="checkbox" name="optionSelected" value=""/>
</display:column>
<display:column property="userName" sortable="false" title="UserName" paramId="userName" style="width: 150px; text-align:center" href="#"/>
</display:table>
On click of the checkbox i need to get the corresponding row value that is the username how would i get that?
© Stack Overflow or respective owner