I am new at Java Web. I follow a tutorial about struts 2 at: http://viralpatel.net
I success at create server-side validation, but the client-side do not work. When submit, I notice that a javascript method is not defined. Try viewing source, I see no script is generated. This is generated HTML source
http://pastebin.com/Lc49jnMs
There is no javascript 'validateForm_customer()' method.
In customer.jsp, I have added validate attrubute:
<s:form action="customer.action" method="post" theme="xhtml" validate="true">
and also added:
<s:actionerror/>
<s:fielderror />
and
<s:head/>
In struts.xml:
<action name="customer" class="mypackage.CustomerAction">
<result name="success">/success.jsp</result>
<result name="error">/customer.jsp</result>
</action>
In code, i have extended ActionSupport, and I have CustomerAction-validation.xml file. Only client-side validation do not work, the server-side validation do work perfectly.
I am using struts 2.1.6. I don't know but the newer vesion also do not work with me. It build success but have some error in dispatcher initialize, so when using taglib "struts-tags", it throw an error
The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter. Struts tags are only usable when the request has passed through its servlet filter, which initializes the Struts dispatcher needed for this tag. - [unknown location]
caused by
org.apache.struts2.views.gxp.inject.InjectedObjectContainer
class not found!
The struts 2.1.6 seems work good until i try using validation.
What did I do wrong?
Thanks and sorry for my bad English
Firstly, I strongly recommend you to use the latest version (for obvious security reasons,), which currently is 2.3.1.1
Then remove struts2-gxp-plugin (it looks like you don't need it), after Then see what happens