I am displaying two drag n drop lists on a jsp page. After adding and
removing some items from those lists. I need to save the changes hitting the
"Update" button. But when I do that, I dont get the changed lists. Although
I am able to change other text box etc properties but I dont see any changes
in the lists. I suppose I need javascript to do some updation to the form.
Am I right ? Either way, I am looking for some help.

         Things Not Included
            <select name="p.pId"  size="88">
                                  <logic:iterate id="t" name="Form"
property="t" >
                        <option value='tId' >
                            <bean:write name="t" property="name"/>
                        </option>
                    </logic:iterate>
            </logic:iterate>
            </select>
           
           
           
        Things Included
     <select name="pid"  size="88">
                   
      <logic:iterate id="s" name="Form" property="p.s" >
                           <option  value="somevalue" >
                   Somename        
                            </option>
                   
                      </logic:iterate>
                   
            </select>

I just need to make the form aware of the changes. 
-- 
View this message in context: 
http://www.nabble.com/Save-Dynamically-loaded-lists-to-the-form-tp18413900p18413900.html
Sent from the struts-menu-user mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
struts-menu-user mailing list
struts-menu-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/struts-menu-user

Reply via email to