Bugs item #1517915, was opened at 2006-07-06 04:38 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1517915&group_id=119783
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Dmitry M.Ivlev (dyelf) Assigned to: Nobody/Anonymous (nobody) Summary: Ajax form submit and FIELDSET Initial Comment: form.elements array in IE may contains FIELDSET which has no name and value. As a result AjaxFormSubmitBehavior does't works when form contains FIELDSET element. For fix this check form elements for name before serialize them. The next is bug fixed version of wicketSerializeForm function from wicket-ajax.js function wicketSerializeForm(form) { var result = ""; for (var i = 0; i < form.elements.length; ++i) { var e = form.elements[i]; if (e.name && !e.disabled) { result += wicketSerialize(e); } } return result; } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1517915&group_id=119783 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Wicket-develop mailing list Wicket-develop@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-develop