getEditor

returns an editor object

object getEditor(string| number| WebixCellObject row, [string| number column] );
rowstring| number| WebixCellObjectrow id or an object with full position
columnstring| numbercolumn id
objectan object with the editor state and info

Example

//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"});

Details

Editor object

{
    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();
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
If you have not checked yet, be sure to visit site of our main product Webix html5 ui library and page of datatable js product.