Description
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="%
" 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.