How to set a javascript function as handler in the event onclick in a given field of a Django Form. Is this possible?
Any clue would be appreciated.
|
|
How to set a javascript function as handler in the event onclick in a given field of a Django Form. Is this possible? Any clue would be appreciated.
|
|||
|
|
|
|
If you are looking for automating this process, you can create a custom widget for the field. In the widget class you will define a render method in such a way that it will also return the event binding code.
|
||
|
|
|
|
I would recommend looking at using a JavaScript library such as jQuery. Here is the link to binding the click event in jQuery. Since Django names all of the input fields you can connect
|
||
|
|