Module Goog.Geditor.Field.EventType
module EventType : sig..end
val _COMMAND_VALUE_CHANGE : Js.js_string Js.t
Dispatched when the command state of the selection may have changed. This event should be listened to for updating toolbar state.
Dispatched when the field is loaded and ready to use.
val _LOAD : Js.js_string Js.t
Dispatched when the field is fully unloaded and uneditable.
val _UNLOAD : Js.js_string Js.t
Dispatched before the field contents are changed.
val _BEFORECHANGE : Js.js_string Js.t
Dispatched when the field contents change, in FF only. Used for internal resizing, please do not use.
val _CHANGE : Js.js_string Js.t
Dispatched on a slight delay after changes are made. Use for autosave, or other times your app needs to know that the field contents changed.
val _DELAYEDCHANGE : Js.js_string Js.t
Dispatched before focus in moved into the field.
val _BEFOREFOCUS : Js.js_string Js.t
Dispatched when focus is moved into the field.
val _FOCUS : Js.js_string Js.t
Dispatched when the field is blurred.
val _BLUR : Js.js_string Js.t
Dispach before tab is handled by the field. This is a legacy way of controlling tab behavior. Use trog.plugins.AbstractTabHandler now.
val _BEFORETAB : Js.js_string Js.t
Dispatched when the selection changes. Use handleSelectionChange from plugin API instead of listening directly to this event.
val _SELECTIONCHANGE : Js.js_string Js.t
