BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
$("#gantt").ejGantt({
//…
actionBegin: function (arg) {
debugger; // triggered while we double click the row when dialog
editing
},
beginEdit: function (arg) {
debugger; // triggered while we double click the row when cell
editing
},
}); |
$(function () {
$("#GanttContainer").ejGantt({
dataSource: data,
///
beginEdit: function (args) {
args.cancel = true;//To cancel the cellEdit
alert("CellEdit is cancelled")
},
actionBegin:function(args){
args.cancel = true;//To cancel the dialogEdit
alert("DialogEdit is cancelled")
}
});
});
|