Ajax remote form fail to bind nested bean property
--------------------------------------------------
Key: WW-1922
URL: https://issues.apache.org/struts/browse/WW-1922
Project: Struts 2
Issue Type: Bug
Components: API
Affects Versions: 2.0.6
Reporter: Stanley Cheng
public class TestAction extends ActionSupport {
private TestBean myBean;
...
}
public class TestBean implements Serializable {
private String name;
...
}
myTest.jsp
<s:form id="testForm" ...>
<input type="text" name="myBean.name" value="TEST_STRING"/>
<s:submit value="Submit Normal"/>
</s:form>
<!-- submit button outside form -->
<s:url id="ajaxSubmitFormTest" value="..." />
<s:submit type="submit" theme="ajax" href="%{ajaxSubmitFormTest}" formId="testForm" value="Submit
Outside Form"/>
The string "TEST_STRING" fail to bind to the field "myBean.name" inside the action class when
I use the ajax submit button to submit my form. But it work find with normal submit form button.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|