Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to set a value on a DynaForm, which is easy to do in the Action class, but I would like to do so in the JSP itself, by copying a value from the session into the form.

<form-bean name="inputCIDs" type="org.apache.struts.validator.DynaValidatorForm">
  <form-property name="containerIDFormat" type="java.lang.String"/>
</form-bean>

The following Java code works in the JSP, but is there a Struts 1.x or JSTL tag that would do the equivalent action?

<%
    DynaActionForm form = (DynaActionForm) request.getAttribute("inputCIDs");
    form.set("containerIDFormat", session.getAttribute("varInSession"));
%>

The property will be used and changed by the user using a select box

<html:select property="containerIDFormat">
  <html:options collection="containerIDFormats" property="value" labelProperty="description"/>
</html:select>

Environment:
Struts 1.2.4
taglibs 1.1.2
JBoss 4.0.2

share|improve this question

1 Answer

up vote 0 down vote accepted

Why? The JSP isn't the appropriate place for this type of work.

<html:hidden property="containerIDFormat" value="${varInSession}"/>

If you just set the form value it won't survive the submission anyway, because a new request-scoped form will be created. And if it's a session-scoped form there's even less reason to do this work in JSP.

share|improve this answer
You are correct. Here is my ultimate challenge that I'm trying to accomplish. I would like a select box's value to be pulled from and put into the Session. However, it seams that if I don't declare the variable in the DynaForm defined for the action, it doesn't work. This particular variable is used in multiple forms and the page can be loaded from multiple actions. By putting the code in the JSP, I ensure the value in the form matches the value in the session. IS there a better way? – JustinKSU Jan 6 '12 at 22:28
@JustinKSU Well, using a dyna form means no reset. It can still be done in the action; if it's something that's all over, could be in a thin base action. Just as easy, perhaps, to use a hidden property. Not sure what you mean about the select box; if a form has a select box, it should have a property for it. – Dave Newton Jan 6 '12 at 22:33
Is there a way to map a property so that it's value is automatically saved to the session instead of, or in addition to, putting it on the form? In other words, is there a way to copy the property, without having to put the code in my Action to copy from the form to the Session? – JustinKSU Jan 6 '12 at 22:42
Not that I'm aware of, although it would be trivial to create a request processor that checks for a form with a specific property, and if it exists, copy it from a session value. – Dave Newton Jan 6 '12 at 22:43
Thanks. I might have to do that. The solution you proposed submitted the literal value "${lastChosenContainerIDFormat}" instead of what was chosen by the user. I updated the question to include the drop down. – JustinKSU Jan 6 '12 at 22:46
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.