Is there an example of a fully working Gantt chart with Adding, Editing, Indent, Outdent and row drag and drop? I have downloaded the samples I have found in the forum but everyone starts acting buggy once you turn all these features on.
The one from here:https://www.syncfusion.com/forums/159222/binding-gantt-control-to-razor-page-model
does not index a new task properly and then if I add indent/outdent to the toolbar it either doesn't do anything or duplicates the task that is indented.
The only change I made is to add the toolbar and allowrowdraganddrop
<!--
<ejs-gantt id='RemoteData' treeColumnIndex="0" load="onLoad" height="450px" toolbar="@(new List<string>() { "Add", "Cancel", "Delete", "Edit", "Indent", "Outdent" })" allowRowDragAndDrop="true">
<e-data-manager url="/Index?handler=DataSource" batchUrl="/Index?handler=BatchUpdate" adaptor="UrlAdaptor"></e-data-manager>
<e-gantt-editsettings allowEditing="true" allowAdding="true" allowDeleting="true" mode="Dialog"></e-gantt-editsettings>
<e-gantt-taskfields id="taskID" name="taskName" startDate="startDate"
duration="duration" progress="progress" dependency="Predecessor" parentID="parentID">
</e-gantt-taskfields>
</ejs-gantt>
-->