Christopher Maloof wrote:
Solved; it turns out that the <table> tags in the form were somehow causing this problem.

Yeah, the S2 form tags put everything in a table by default, so you would have had some funky HTML there... different browsers handle malformed HTML in different ways. Yay browsers.

Dave

[researchers.jsp]

<head>
<sx:head/>
</head>

<!-- This is the form that gets validated -->
<s:form action="addResearcher">
<table>
<s:textfield name="name" label="Name" />
<s:textfield name="email" label="E-mail" />
</table>
<sx:submit value="Add researcher" align="left" validate="true" ajaxAfterValidation="true" targets="researcherlist" id="add_submit" />
</s:form>


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to