| Author |
bean:define help
|
Alan Hermin
Ranch Hand
Joined: Feb 16, 2006
Posts: 290
|
|
hi all... i want to convert this script to struts <bean efine> But this does not work......... can any one help me...............
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
In order to make this list available to Struts tags, you need to put it in a "scope" (application, session, request, or page). I would not use a bean:define tag for this. I'd use the following statement to put the list in page scope: <% pageContext.setAttribute("list", list); %> Once you have done this, you can use list in any struts tags. For example: <logic:iterate id="element" name="list"> <bean:write name="element"/> </logic:iterate> [ July 12, 2006: Message edited by: Merrill Higginson ]
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: bean:define help
|
|
|