onPaste

срабатывает, когда the clipboard is enabled and the user presses CTRL+V keys combination

void onPaste(string text);
textstringтекст для вставки

Example

grid.attachEvent("onPaste", function(text) {
    webix.message("Custom paste behavior: " + text);
    // в этом обработчике можно переопределить то,
    // как будет работать вставка
});

Related samples

See also
Наверх