[SOLVED] How to save data after copy & paste in datatable?

Hi all, is there a way to save changed data in datatable after paste from excel?

Hi webix, please tell me how to do that, thanks!

attachEvent “onPaste” event, webix.dp($$(‘gridId’)).save(…)

Well, I make function and then make ajax call to comunicate with server. In function bellow you will find alert(“juhu”) but you can change it to whatever you want

var Table3 = {
id:8,
view:“treetable”,
select:“cell”,
multiselect:true,
blockselect:true,
clipboard:“selection”,
columns:TC3,
data: NewIRTable,
on: {
“onPaste”:webix.once(function(){
alert(“juhu”);
}
)
}
};