Documentation

onPaste

fires when the user presses CTRL+V keys combination

void onPaste(string text){ ... };

Parameters

textstringthe text to paste

Example

tree.attachEvent("onPaste", function(text) {
        webix.message("Node is pasted: " + text);
});

See also

Back to top