clipboard

enables/disables clipboard support on desktop devices

boolean|string clipboard;

Values

  • "modify" (true)
  • "insert"
  • "custom"
  • Example

    tree = webix.ui({
        view:"tree",
        ...
        clipboard:"insert"
    });

    Related samples

    Details

    If you choose "custom" clipboard, define the onPaste event handler that will define how the copied content will be pasted.

    See also
    Back to top