I am working with ExtJS and I have a textfield component. I would like to disable only the inputEl of a textfield component (not the label).
If I use the setDisabled() method of the textfield, then it sets disabled the inputEl but also the label.
I have used also the setReadOnly() method, but it does not grey out the inputEl, only set asReadOnly.
Is there a way to disable only the inputEl of a textfield component?
Thanks for your help.