Thanks for the response. That looks like the file(s) I need.
In the meantime, I was able to get the desired outcome by just changing my theme to simple, and modified the fielderror.ftl file directly.
For anyone else looking at this, copy the template.simple.fielderror.ftl file from struts-core into a directory in your webroot named /template/simple/. For my purposes, I modified the file to not use <ul> and <li> tags. The framework will automatically pick up these changes.
My
JSP fielderror now looks like this:
<s:form action="DriverAdd" theme="simple">
<s:textfield name="driver.firstName" required="true" />
<s:fielderror>
<s : param value="%{'driver.firstName'}" />
</s:fielderror
<s:submit />
</s:form>
I left out formatting and labels for sake of simplicity. Hope this helps anyone else looking to do something like this.
[ October 24, 2008: Message edited by: William Nelson ]
[ October 24, 2008: Message edited by: William Nelson ]
[ October 24, 2008: Message edited by: William Nelson ]