aspose file tools
The moose likes Struts and the fly likes Using display tag in struts Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Using display tag in struts" Watch "Using display tag in struts" New topic
Author

Using display tag in struts

Sreek Gupta
Greenhorn

Joined: Mar 08, 2006
Posts: 24
Hi , I have following code in JSP to display a table.

<display:table id="cp" class="datatable" name="sessionScope.myList" pagesize="5" cellpadding="0" cellspacing="0" requestURI="/myPayment.do">
<% i = 1;%>
<display:column>
<html:radio property="selectedRow" value="<%=String.valueOf(i)%>" />
</display:column>
<display:column property="empName" title="Employee Name" sortable="true" />
<display:column property="paymentAmount" title="Payment Amount"/>
<% i = i+1;%>
</display:table>

Intension is when i select radio button, depending on the selection i want to read the selected values in my Action.
I have getters and setters in my Form bean. But when i am saying getEmpName() in action it is returning me 'null'.

My question is how to extract the selected row of a table (that is using display tag library) in my action class?

Please help me with sample code if possible.

Regds,
Sreek
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Using display tag in struts
 
Similar Threads
problem exporting data using Display Tag
display tag export problem
Conditional display of DisplayTable of DisplayTag
maintin checkbox stauts during paginatin(dispalytag)
JSTL paging error