Fix bug 158690, 'textbox .readonly property not implemented correctly'. Fix by djudd@seachange.com (David Judd), r=caillon, sr=blake.

This commit is contained in:
jrgm%netscape.com 2002-11-12 01:55:58 +00:00
Родитель 417d42c783
Коммит 6c7604ba55
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -47,8 +47,8 @@
<property name="size" onset="this.inputField.size = val; return val;"
onget="return this.inputField.size;"/>
<property name="readonly" onset="this.inputField.readonly = val;
if (val) this.setAttribute('disabled', 'true');
else this.removeAttribute('disabled'); return val;"
if (val) this.setAttribute('readonly', 'true');
else this.removeAttribute('readonly'); return val;"
onget="return this.inputField.readonly;"/>
<method name="select">