CKEDITOR.menu
class
Filtering
Methods
constructor() → menuCKEDITOR.menu#constructoradd( item )CKEDITOR.menu#addaddListener( listenerFn )CKEDITOR.menu#addListenerAdds a callback executed on opening the menu. Items returned by that callback are added to the menu.
Parameters
listenerFn : Function
-
Finds the menu item corresponding to a given command.
Notice: Keep in mind that the menu is re-rendered on each opening, so caching items (especially DOM elements) may not work. Also executing this method when the menu is not visible may give unexpected results as the items may not be rendered.
Parameters
commandName : String
Returns
Object | nullreturn An object containing a given item. If the item was not found,
nullis returned.Propertiesitem : menuItemThe item definition.
element : elementThe rendered element representing the item in the menu.
hide( [ returnFocus ] )CKEDITOR.menu#hideremoveAll()CKEDITOR.menu#removeAllRemoves all items.
show( offsetParent, [ corner ], [ offsetX ], [ offsetY ] )CKEDITOR.menu#showShows the menu in given location.
Parameters
offsetParent : element[ corner ] : Number[ offsetX ] : Number[ offsetY ] : Number