[EMAIL PROTECTED] wrote: > Hi All > > I would like to be able to implement onchange functionality for form > fields in my django app. > > My app has a Questions Module which has related Module Answers edited > inline (just like in django admin) > > Questions can be correct or incorrect and only one question can be > correct for each question. > > Whjat I'd like to do is implement a javascript onchange that will set > all other other answers in the form to incorrect when an answer is > marked as correct > > Does anyone have any idea how i might be able to set onchange > properties for my fields > > Thanks > Charlie > >
The best way I have come across is behaviour.js http://bennolan.com/behaviour/, which includes code from our very own Simon Willison. This gets away from setting individual attributes. As long as you know enough to select an element via CSS, eg id or class, it is easy to apply javascript handlers to it without messing with attributes.