Working with Web2Py. I'm trying to attach some javascript either to a field (onchange) or to the form (onsubmit), but I see absolutely no way to pass such argument to crud.create or to form.custom.widget.
Anyone has an idea?
|
Working with Web2Py. I'm trying to attach some javascript either to a field (onchange) or to the form (onsubmit), but I see absolutely no way to pass such argument to crud.create or to form.custom.widget. Anyone has an idea? | ||||
|
feedback
|
|
Of course there is a way. The appropriate way is to ask people on the web2py mailing list who know how to, as opposed to generic stack overflow users who will guess an incorrect answer. :-) Anyway, assume you have:
You can do
Element takes the css3/jQuery syntax (but it is evaluated in python). | |||||||||||
feedback
|
|
I do not believe there is a way to do this directly. One option is just to manipulate web2py generated HTML, it is just a string. Even cleaner, in my opinion, is just to bind the event using jQuery's $(document).ready() function. Say you have a database table (all is stolen from web2py's docs):
With form:
Embedded in a view (in the simplest manner):
And you want to add an onblur handler to the name input field (added to the view):
| |||
|
feedback
|