I have a combo who’s readOnly is initially set to false. After clicking a button an event is launched and I want the combo now to have a readOnly config of true. How is this possible, I can’t seem to find any methods that provide this functionality.
Thanks
My solution to this was
combo.setConfig({readOnly : true});
combo.reset();
This was before I realized there was a method called setReadOnly(). I knew there had to be a method for this somewhere. Thanks for the answer guys.
Is there any reason you can’t use the setReadOnly combobox instance method?