Fixing:
The code that I posted had a error because I'd edited manually here.
The error was:
"_id=form_name" instead of "_id="form_test". See below:
> form = SQLFORM(db.product, _enctype=None, _id=form_name,
> _action=None, _method=None)
The correct line is:
form = SQLFORM(db.product, _enctype=None, _id="form_test",
_action=None, _method=None)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---