On Apr 11, 2008, at 5:15 PM, Gary Mann wrote:
I am trying to write a JSP page which requires access to several ActionBeans at the same time.The application is in fact a series of tabbed panels, each of which draws a separate map using the Google Maps tag library. Each panel has its own set of inputs, so the simple approach is to define one ActionBean per panel. But the tag library requires that some of the map-drawing tags are placed in the head section of the JSP, before the <stripes:forms>s are opened. So all the properties of all the action beans must be available throughout the page, even outside the forms in which they are used.
Why are you using s:text in the head section of the JSP? I assume you mean the head section of the html document?
If you just want to get to the values of an action bean, then the useActionBean and ${actionBean1.yourValue} should work for you.
Regards, Will Hartung
------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________ Stripes-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/stripes-users
