I have a grid with to columns. The second column has editor with xtype: combobox. So here is my grid: grid
I want to clear my second row's combobox when first combobox is changed. I tried do this with edit( editor, e, eOpts ), but i'm a little confusing when i try retrieve second combobox. Something like this:
var combobox1=editor.grid.columns[1].getEditor(e.record, 1)
it gives me current combobox, so i can't take another combo. Can you help me, please