Documentation

clipboard

enables/disables clipboard support

boolean|string clipboard;

Values

  • 'modify' ( or true, the default value)
  • 'insert'
  • 'custom'
  • Example

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

    See also

    Details

    If cliboard is defined as "custom", you need to specify onPaste behavior attached to the same-name event.

    Back to top