init

initializes the clipboard buffer

void init();

Example

webix.clipbuffer.init();

Details

After initialization, clipbuffer will monitor key events. After the user presses Ctrl-V, the onPaste event will fire for the component that is currently active. This event can be caught by the attachEvent method for the related component.

Back to top