Version

BaseEditorClientEvents Class Members

The following tables list the members exposed by BaseEditorClientEvents.

Public Fields
 NameDescription
Public FieldBlurEvent which is raised when input field of editor loses focus. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.element to obtain a reference to the event target.

Use ui.editorInput to get a reference to the editor field.  
Public FieldFocusEvent which is raised when input field of editor gets focus. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.element to obtain a reference to the event target.

Use ui.editorInput to get a reference to the editor field.  
Public FieldKeyDownEvent which is raised on keydown event. Return false in order to cancel key action. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.key to obtain value of keyCode.  
Public FieldKeyPressEvent which is raised on keypress event. Return false in order to cancel key action. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.key to obtain value of keyCode.  
Public FieldKeyUpEvent which is raised on keyup event. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.key to obtain value of keyCode.  
Public FieldMouseDownEvent which is raised on mousedown event. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.element to obtain a reference to the event target.

Use ui.editorInput to get a reference to the editor field.  
Public FieldMouseMoveEvent which is raised on mousemove at any part of editor including drop-down list. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.element to obtain a reference to the event target.

Use ui.editorInput to get a reference to the editor field.  
Public FieldMouseOutEvent which is raised on mouseout at any part of editor including drop-down list.

Use ui.owner to obtain reference to igEditor.

Use ui.element to obtain a reference to the event target.

Use ui.editorInput to get a reference to the editor field.  
Public FieldMouseOverEvent which is raised on mouseover at any part of editor including drop-down list. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.element to obtain a reference to the event target.

Use ui.editorInput to get a reference to the editor field.  
Public FieldMouseUpEvent which is raised on mouseup event. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.element to obtain a reference to the event target.

Use ui.editorInput to get a reference to the editor field.  
Public FieldRenderedEvent which is raised after rendering of the editor completes. Function takes arguments evt and ui.

Use ui.owner to get a reference to the editor performing rendering.

Use ui.element to get a reference to the editor element.  
Public FieldRenderingEvent which is raised before rendering of the editor completes. Function takes arguments evt and ui.

Use ui.owner to get a reference to the editor performing rendering.

Use ui.element to get a reference to the editor element.  
Public FieldValueChangedEvent which is raised after the editor value is changed. It can be raised after loosing focus or on spin events. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.newValue to obtain the new value.

Use ui.originalValue to obtain the original value.

Use ui.editorInput to obtain reference to the editor input.  
Public FieldValueChangingEvent which is raised before the editor value is changed. Return false in order to cancel change. It can be raised after loosing focus or on spin events. Function takes arguments evt and ui.

Use ui.owner to obtain reference to igEditor.

Use ui.newValue to obtain the new value.

Use ui.oldValue to obtain the old value.

Use ui.editorInput to obtain reference to the editor input.  
See Also

View on GitHub