ASP.Net MVC - Add field to a Create form with add link (without javascript) - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T00:50:02Zhttp://stackoverflow.com/feeds/question/897865http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/897865/asp-net-mvc-add-field-to-a-create-form-with-add-link-without-javascript0ASP.Net MVC - Add field to a Create form with add link (without javascript)Richbits2009-05-22T13:31:28Z2009-05-22T15:02:44Z
<p>I have an MVC application which has a set of fields for contact details to be added for a person (Email, Phone, Fax, AIM... etc). Initially I present a dropdown for type of input and and input field for the corresponding data, along with a link to add a further set of fields. </p>
<p>When complete I have a submit button to submit the form. </p>
<p>I am happy with an approach for adding a further set of fields using the add link and javascript, but I can't work out how to do this without javascript.</p>
<p>I would be grateful for some pointers in the best direction to solve this. I am not particularly precious about keeping the add link, it could be a button, but I would rather the url not change in the address bar.</p>
<p>Thanks, Richard</p>
http://stackoverflow.com/questions/897865/asp-net-mvc-add-field-to-a-create-form-with-add-link-without-javascript/897905#8979050Answer by Tomas Lycken for ASP.Net MVC - Add field to a Create form with add link (without javascript)Tomas Lycken2009-05-22T13:41:36Z2009-05-22T13:50:23Z<p>With <a href="http://www.jquery.com" rel="nofollow">jQuery</a> it is pretty easy to insert html elements into the DOM, on the fly, with no postback. It is using javascript, which you said in your header that you didn't want, but you did say it was OK in the question so tell me if you need something else.<br />
So what you really need to figure out is a way to handle the data when sent to the server...</p>
<p>...and that doesn't have to be too hard either. If I'm not mistaken (but I might be) values from <code>input</code> elements with the same <code>name</code> will be handled as an array of values. Thus, if you insert new elements all with a generic name, you should be able to retrieve all the data by iterating over the array on the server.</p>
<p>This html</p>
<pre><code><input type="text" name="customData" />
<input type="text" name="customData" />
</code></pre>
<p>will post data that you can get with this C# code on the server:</p>
<pre><code>public ActionResult DoCoolStuff(FormCollection postedValues) {
foreach(string data in postedValues.customData) {
// This is where the cool stuff goes
}
Return RedirectToAction("Index");
}
</code></pre>
http://stackoverflow.com/questions/897865/asp-net-mvc-add-field-to-a-create-form-with-add-link-without-javascript/898102#8981020Answer by Matthew Flaschen for ASP.Net MVC - Add field to a Create form with add link (without javascript)Matthew Flaschen2009-05-22T14:18:02Z2009-05-22T14:18:02Z<p>This is basically the client side of the answer. If you have to do it without JavaScript and without changing the URL, that basically leaves a POST.</p>
<pre><code><form action="" method="post">
<input name="field1"/>
<input name="field2"/>
...
<input name="add_field_submit" type="submit" value="Add Field"/>
...
<input name="done_submit" type="submit" value="Submit"/>
</code></pre>
<p>On the server, you detect whether they clicked Add Field (add_field_submit is present) or Submit (done_submit is present). If they clicked Add Field, you add a field and serve the view. Otherwise, it's done.</p>
http://stackoverflow.com/questions/897865/asp-net-mvc-add-field-to-a-create-form-with-add-link-without-javascript/898336#8983360Answer by Tomas Lycken for ASP.Net MVC - Add field to a Create form with add link (without javascript)Tomas Lycken2009-05-22T15:02:44Z2009-05-22T15:02:44Z<p>As Matthew said, if you don't want to change the URL and don't want to use javascript, your best option is a POST request to the server. In ASP.Net MVC this can be pretty neatly done, however. You'll need to modify the <strong><code>View</code></strong> with two additions, and add a new <strong><code>ActionMethod</code></strong>.</p>
<p><strong>The View, part 1</strong><br />
Add an extra form to your view (this is not allowed in WebForms, so it might feel a little strange, but it is perfectly fine in MVC).</p>
<pre><code><form action="/myController/myView/<%= (ViewData["fieldCount"]+ 1) %>">
<input type="submit" value="Add custom field" />
</form>
</code></pre>
<p>Note the <code>fieldCount</code> variable - this should be passed down from the <code>Controller</code> as presented below:</p>
<p><strong>The Controller</strong><br />
Add the following <code>ActionMethod</code> to overload the one you currently have to display your form:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult myView(int id) {
ViewData["fieldCount"] = id;
Return View();
}
</code></pre>
<p>I used the variable name <code>id</code> just so you wouldn't have to add another route.</p>
<p><strong>The View, part 2</strong><br />
Now, as you have a known fieldcount, so you can just loop out the fields on the view:</p>
<pre><code><form action="/myController/SaveData/" method="post">
...
<% for(i=0; i<int.TryParse(ViewData["fieldCount"]); i++) { %>
<input type="text" name="customData" /><br />
<% } %>
...
</form>
</code></pre>
<p>Note that the two forms have different actions - that way, you will never have to worry that clicking one submit button will accidentally post the wrong data.</p>