I'm working on a project in ExtJS
started by my colleagues. I found an item of a fieldset which is like this:
{
xtype: 'radiofield',
name: 'something',
value: something,
label: something,
checked: something,
bind: {
disabled: '{readOnly}'
}
}
What is disabled: '{readOnly}'
? According to documentation, disabled:
should be a boolean, so disabled: '{readOnly}'
what is supposed to be?