returns an editor object
row | string| number| WebixCellObject | row id or an object with full position |
column | string| number | column id |
object | an object with the editor state and info |
//return last opened editor
var editor = view.getEditor();
//return specific editor
var editor = view.getEditor(3, "year");
//or
var editor = view.getEditor({row:3, column:"year"});
{
column: column id,
config: editor configuration object,
focus: method that sets focus for an editor,
getInputNode: method that return the input node of an editor,
getValue: method that return editor value ,
node: HTML node of the editor,
render: method that renders the editor,
setValue: method that sets value for an editor,
value: current editor value,
}
You can access all methods of editor through this object
//get value
var value = some.getEditor().getValue();
//set value
some.getEditor().setValue( new_value );
//set focus
some.getEditor().focus();