BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
$("#GanttContainer").ejGantt({
actionBegin: function (args) {
if (args.requestType == "beforeOpenAddDialog") {
args.cancel = true;
}
},
toolbarClick: function(args){
var itemName = args.currentTarget && args.currentTarget.id;
if (itemName == this._id + "_add") {
$("#customDialog").ejDialog("open");
}
},
}); |