cocaineuser
New Member
I have this form on which I would like to create a dynamic number of dropdowns. I have a list of uncategorized applications which I would like each to have its own dropdown to select its category. I am not sure how to pass the unique data to the server. The dropdown options will be the same for each. \[code\]<html:form action="/CategorizeApps.do"> <h3>Uncategorized</h3> <br/> Categorize each application using the dropdown menu then click categorize.<br/> <table class="list"> <thead> <tr class="controls"> <td><input type="submit" name="btnAction" value="http://stackoverflow.com/questions/12730740/Categorize"/></td> </tr> <tr class="fields"> <td>ID</td> <td>Name</td> <td></td> </tr> </thead> <tbody> <logic:iterate id="uncat" name="appsUncat" scope="session"> <tr class="hlist"> <td><bean:write property="id" name="uncat" scope="page"/></td> <td><bean:write property="name" name="uncat" scope="page"/></td> <td> <select id="category" name="category"> <logic:iterate id="categories" name="Categories" scope="session"> <option value="http://stackoverflow.com/questions/12730740/<bean:write name="categories" property="id" scope="page"/>"><bean:write name="categories" property="name" scope="page"/></option> </logic:iterate> </select> </td> </tr> </logic:iterate> </tbody> </table></html:form>\[/code\]