sort: true,
multiple: this.multiple,
optional: this.optional || this.rmempty,
- disabled: this.readonly,
+ disabled: (this.readonly != null) ? this.readonly : this.map.readonly,
select_placeholder: E('em', _('unspecified')),
display_items: this.display_size || this.size || 3,
dropdown_items: this.dropdown_size || this.size || 5,
sort: true,
multiple: this.multiple,
optional: this.optional || this.rmempty,
- disabled: this.readonly,
+ disabled: (this.readonly != null) ? this.readonly : this.map.readonly,
select_placeholder: E('em', _('unspecified')),
display_items: this.display_size || this.size || 3,
dropdown_items: this.dropdown_size || this.size || 5,
sort: order,
multiple: this.multiple,
optional: this.optional || this.rmempty,
- disabled: this.readonly,
+ disabled: (this.readonly != null) ? this.readonly : this.map.readonly,
select_placeholder: E('em', _('unspecified')),
display_items: this.display_size || this.size || 3,
dropdown_items: this.dropdown_size || this.size || 5,