If i add field observers to radio button fields they trigger once but
then nothing after that. I have multiple fields in a form that i need
to know if one of them changes and which spedific field. Below is an
example of two foelds i tested and they trigger once with the alert but
then nothing after that. I also tried individual observers for each
field test_yes and test_no but with the same issue.
If I remember correctly, I think you'll need an id on each radio
button and need to observe each radio button individually. The
'grouping' of the radio buttons into a single field value that's
posted back does not replace the fact that it's actually a collection
of individual html elements on the form.
If I remember correctly, I think you'll need an id on each radio
button and need to observe each radio button individually. The
'grouping' of the radio buttons into a single field value that's
posted back does not replace the fact that it's actually a collection
of individual html elements on the form.
On May 16, 4:07 pm, John Butler <rails-mailing-l...@andreas-s.net>
Ye ive tried adding an observer to each individual radio button but the
same thing happens.