|
From: Andrew G. <an...@zo...> - 2004-07-30 02:06:01
|
Hi,
The setState() function in HTMLRadioButton doesn't work (on any browser).
The reason is a typo on line 79 of htmlradiobutton.js :
if(this.getElm()) this.elm.selected=this._state;
should read:
if(this.getElm()) this.elm.checked=this._state;
- there is no such attribute as "selected" in a radio button.
Andrew.
|