mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-25 12:21:26 +02:00
Fix bug where radiobuttons with the same value as Array methods would break
This commit is contained in:
parent
ab8ab5f330
commit
3808dd6fee
@ -65,7 +65,7 @@ var et2_radiobox = (function(){ "use strict"; return et2_inputWidget.extend(
|
|||||||
transformAttributes: function(_attrs) {
|
transformAttributes: function(_attrs) {
|
||||||
this._super.apply(this, arguments);
|
this._super.apply(this, arguments);
|
||||||
var readonly = this.getArrayMgr('readonlys').getEntry(this.id);
|
var readonly = this.getArrayMgr('readonlys').getEntry(this.id);
|
||||||
if(readonly && readonly[_attrs.set_value])
|
if(readonly && readonly.hasOwnProperty(_attrs.set_value))
|
||||||
{
|
{
|
||||||
_attrs.readonly = readonly[_attrs.set_value];
|
_attrs.readonly = readonly[_attrs.set_value];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user