Subject: | radio button does not respond as specified + textNode behaviour |
The XUL-Node documentation states that a method 'checked' can be
examined for each radio button in a radio group. However even the
selected radio button returns 0 (not true as expected). The problem is
in line 68 of Application.js
The fix (for a radio button is)
- 'checked': source.getAttribute('checked')
+ 'checked': source.getAttribute('selected')
I have not checked what other check boxes do, so a more sophisticated
fix may be necessary.
Just to confirm the textNode behavior has not been fixed in v. .06