Hello, I would like to know if you can have ajax validators when using custom forms.
I leave here an example of a view to change password: {{form=auth.change_password(next=URL(r=request, c='default', f='login'))}} <h1>{{=T('Change Password')}}</h1> {{=form.custom.begin}} <table> <tr> <td>{{=T('Old Password:')}}</td> <td><input type="password" value="" name="old_password" id="no_table_old_password" class="password"></td> </tr> <tr> <td>{{=T('New Password:')}}</td> <td><input type="password" value="" name="new_password" id="no_table_new_password" class="password"></td> </tr> <tr> <td>{{=T('Verify Password:')}}</td> <td><input type="password" value="" name="new_password2" id="no_table_new_password2" class="password"></td> </tr> <td></td> <td>{{=form.custom.submit}}</td> </tr> </table> {{=form.custom.end}} In this case what i wanted is something that validates the old password and that the new and verief password are the same. Thank you