ExtJs. Set rowediting cell value
问题 I have grid with RowEditing plugin. Editor has 2 columns: one with combobox and another with disabled textfield. I need to change textfield value after changing the combobox value. I have combobox listener: listeners = { select: function (combo, records) { var editorRecord = myGrid.getPlugin('rowEditPlugin').editor.getRecord(); editorRecord.data["SomeCol"] = "SomeValue"; } } But value in the textfield does not refresh until another calling of roweditor. I need just to set text value to the