Is there a possibility to recognize when the user sorts a column in the GanttList?
Gantt CurrentTimeMarker reappears after the Grid and Gantt tables are resized from the pane between them
After the resize the marker reappears
The Core wrapper does not have a "Type" option:
.DependenciesDataSource(d => d
.Model(m =>
{
m.Id(f => f.DependencyID);
m.PredecessorId(f => f.PredecessorID);
m.SuccessorId(f => f.SuccessorID);
**m.Type(f => f.Type);**
})
.Read("Read_Dependencies", "Gantt")
.Create("Create_Dependency", "Gantt")
.Destroy("Destroy_Dependency", "Gantt")
)
Both the MVC wrapper and the jQuery widget allow to specify a field in the data that will be used as "type". Currently the Core wrapper does not allow specifying a field, and dependencies will work only if the data contains a field named "Type".
Hello,
I have a Gantt that only can have two levels. I guess drag&drop is the best and easiest way to do this (Is it a better solution like editing the order value directly in the TreeList area?)
I want to implement order change in the following way.
Could you send me any example of this behaviour?
Regards!
The OrderId field for the Gantt tasks cannot be defined in its datasource using the UI for ASP.NET Core wrappers.
*for more details, please refer to ticket #1461758
Create a UI for ASP.NET Core project and try to initialize the Gantt component with a datasource configured similar to the following:
The marked "OrderID" definition is not a valid one in UI for ASP.NET Core
The datasource configuration provided above(or similar) should be valid for the Gantt component. The OrderID should be configurable using the ASP.NET Core wrappers.
In a Razor Pages project, the Gantt's tasks are not binding if the taskID and parentID fields are strings.
This is a regression introduced in version 2020.3.915.
There are no tasks displayed in the Gantt.
The tasks should be displayed.