Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Struts
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
Ron McLeod
paul wheaton
Jeanne Boyarsky
Sheriffs:
Paul Clapham
Devaka Cooray
Saloon Keepers:
Tim Holloway
Roland Mueller
Himai Minh
Bartenders:
Forum:
Struts
s:merge tag in display:column tag
usha kotha
Ranch Hand
Posts: 33
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
how to use s:merge tag or s:append tag output(result, i.e list) in s:select tag list attribute
i have a select tag in display column of display table............i want result of merge tag or append tag as value for list attribute
<s:append var="appendId">
<s:param value="%{myList}" />
</s:append>
<display:column>
<s:select name="currentStatus" headerKey="Select" headerValue="Select" list="appendId" listKey="currentStatus" listValue="currentStatus" style="border:1px solid #ccc; background:#fff; width:165px; margin-left:10px;" />
</display:column>
Yogesh Lonkar
Ranch Hand
Posts: 94
I like...
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
<s:append var="appendId"> <s:param value="%{myList}" /> </s:append> <display:column> <s:select name="currentStatus" headerKey="Select" headerValue="Select" list="%{#appendId}" listKey="currentStatus" listValue="currentStatus" style="border:1px solid #ccc; background:#fff; width:165px; margin-left:10px;" /> </display:column>
this might help.
Learning some thing New Every Day
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Struts 2 : passing collection(list,map..) in s:param tag
Display tag-Pagination result not working properly.
populate items using struts2 <s:select>
how to get the selected value from a drop down to action
Validation For Appropriate File Browse And Its CheckBox
More...