BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
$(function () {
$("#TreeGridContainer").ejTreeGrid({
enableCollapseAll: true,
});
}); |
$("#TreeGridContainer").ejTreeGrid({
rowDragStop: function (args) {
//we can perfrom the required action here
alert("row dropped")
}
}); |
$("#TreeGridContainer").ejTreeGrid({
recordClick: function (args) {
//Triggered on single click action
console.log("recordClicked");
},
beginEdit: function (args) {
//Triggered on double click action
console.log("double click");
},
}); |