我有这个设置,但验证不起作用
索引.gsp:
<g:form name="loginForm" autocomplete="off" controller="company" action ="save">
<table >
<tr>
<td><g:field type="text" name="company" required="true" value="${c?.companyName}" /></td>
</tr>
</table>
控制器:
def index = {
def c =new Company()
//c=params
return [c:c]
}
def save ={}