You are not using the form generated by SQLFORM in your view, which
has the code to show the errors.
To fix, in the controller:
return dict(form=form)
and in the view just have:
{{=form}}
On Mar 10, 12:47 pm, Jamboo <[email protected]> wrote:
> http://www.pastie.org/1656418
>
> I have a form, and when I fill out the fields required, it gets pushed
> to the db no problem. The issue is that I want it to have a
> notification where if a field is empty it makes that red rectangle
> appear to alert the user to fill in the field properly. I thought how
> I have my controller setup, it would do this. Does it have to deal
> with request.vars ?