Olá.
Estou tentando utilizar a validação via Ajax do webwork, mas não estou conseguindo. O JSP está assim:
<%@ taglib prefix="ww" uri="webwork" %>
<html>
<head>
<title>Validation - Basic</title>
<ww:head theme="ajax"/>
</head>
<body>
<ww:form method="post" action="teste.action" validate="true" theme="ajax">
<ww:textfield label="Name" name="name" theme="ajax"/>
<ww:textfield label="Age" name="age" theme="ajax"/>
<ww:textfield label="Favorite color" name="answer" theme="ajax"/>
<ww:submit/>
</ww:form>
</body>
</html>
Mas os campos não estão sendo validados pelo evento onblur. A validação só funciona se o form for submetido.
Alguém sabe como resolver esse problema ?
Obrigado.