In my grid I have added a row editor as plugin (with new Ext.ux.grid.RowEditor()
). I want to set focus on a specific column in a specific record.
This is what I have now:
editor.startEditing(record);
;
It starts editing and sets focus on the first field, but I want to define a different field. Searching the web I see people having something like: editor.startEditing(record, column)
or editor.startEdit(record, column)
the first doesn't seem to work and the latter function does not exist.
The solution could rely in a 'RowEditing' plugin but since ExtJs is new to me I don't understand how to do that.
Any help is very much appreciated.