vote up 1 vote down star

I am trying to make a dynamic form using Spring forms. Basically, the form gets a title of learning activity and then there's the a button below it that says, "Add one more Learning Activity". This makes it possible for the user to add one more learning activity. I want him to be able to add as much as he likes.

I haven't tried this before so obviously I encountered errors with the first solution I thought of. I really had a feeling doing what I did will generate an error but just do drive home what I am trying to do, here's the code:

<script language="javascript">
 fields = 0;
 function addInput() {
      document.getElementById('text').innerHTML += "<form:input path='activity[fields++].activity'/><br />";
 }

<div id="text">
  <form:form commandName="course">
   Learning Activity 1 
   <form:input path="activity[0].activity"/>
    <input type="button" value="add activity" onclick="addInput()"/>
    <br/><br/>
   <input type="submit"/>
  </form:form>  
  <br/><br/>
 </div>
flag

76% accept rate

2 Answers

vote up 3 vote down check

You can't use <form:input> within the javascript because is a jsp tag that runs on the server-side.

However, there's nothing magical about how an HTML input gets bound to a field in the Spring command object; it's just based on the name. So in your javascript, add a new <input type="text" name="activity[1].activity"> (for example -- obviously you'll increment the index).

Another option I've used for more complicated controls is to grab the HTML of the existing control (which was created using the Spring form:input tag) and clone it, replacing the indexes with the incremented number. This gets a lot easier if you use jQuery.

EDITED TO ADD: One issue that may cause you problems: you're appending your new input box to the end of your outer div ("text"), which means it's not inside the form tags. That won't work.

link|flag
I tried doing this but the the values of the generated forms are not bound to the command class. Only the one that I explicitly set in the spring form is bound e.g In the code above: <form:input path="activity[0].activity"/> – Jeune Sep 18 at 13:05
"One issue that may cause you problems: you're appending your new input box to the end of your outer div ("text"), which means it's not inside the form tags. That won't work." I addressed this already I appended the new input boxes inside another div within the form tags, still the appended input boxes don't bind. – Jeune Sep 18 at 16:05
Can you give an example of your appended input box? I have used this approach to do exactly this and it does work. An input box named "activity[1].activity" should bind to the second item in your activity list (assuming it has an "activity" field), etc. – JacobM Sep 18 at 17:26
I finally made it to work! Thanks a lot. :) Here's my blogpost about it: jeungun.wordpress.com/2009/09/… – Jeune Sep 18 at 18:10
vote up 0 vote down

Is <form:input> a JSP tag? If so, then client-side Javascript to add <form:input> nodes to the DOM will have no effect - since the server-side JSP engine is not interpreting those.

Your Javascript needs to work with raw HTML and DOM, such as adding an <input> element.

link|flag
Yes it's a jsp tag for Spring. I've thought of just brute-forcing the forms already by just getting the parameters from the request directly. However, I wanted to use Spring's SimpleFormController ability to bind the form fields to a command class. I was just wondering if there's a way to do it in my situation. Cheers! – Jeune Sep 17 at 15:37

Your Answer

Get an OpenID
or

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