getEditState
returns info about active editor object
function getEditState(): WebixEditorObject
Returns
Section titled “Returns”WebixEditorObject
object with editors state and info
Example
Section titled “Example”var editor = view.getEditState();
Details
Section titled “Details”If there are many active objects - returns info about last opened editor
Editor object
Section titled “Editor object”{ node: html_node_of_editor, value: initial_value_of_editor, config: configuration_of_editor}
You can access all methods of editor through this object
//get valuevar value = some.getEditState().getValue();//set valuesome.getEditState().setValue( new_value );//set focussome.getEditState().focus();
See also
Section titled “See also”Articles
API