This commit is contained in:
tanghucheng
2023-11-09 21:42:30 -05:00
parent 5d458f5364
commit 4eb5514793
+7
View File
@@ -944,5 +944,12 @@ $(function()
{
return validateResources(id);
});
gantt.attachEvent("onRowDragStart", function(id, target, e) {
//any custom logic here
var task = gantt.getTask(id);
if(task.type != 'task') return false;
return true;
});
});
</script>