Completed
Last Updated: 23 Nov 2023 10:08 by ADMIN
Release R1.2024-Increment.2(31.Jan.2024)

### Bug report

When the Gantt has a custom editor template, the Update request is not fired. When using the default editor template, the respective task is updated correctly. 

The last version, where this scenario works as expected, is 2023.1.117.

### Reproduction of the problem

1) Define an editable Gantt that binds to remote data.

2) Set up a custom editor by using the editable.template option.

3) Try to edit a Task in the Gantt timeline table. The editable model is marked as "dirty", but the "save" event does not fire and the Update request does not trigger:

However, when using the default Gantt editor, the request triggers as expected. 

A Dojo sample for reproduction: https://dojo.telerik.com/EyumevaD

### Expected/desired behavior

The tasks should be edited correctly when using a custom editor template.

### Environment

* **Kendo UI version: 2023.1.314
* **jQuery version: 3.4.1
* **Browser: [all]

Completed
Last Updated: 01 Mar 2023 12:15 by ADMIN
Release R2.2023-Increment.1(15.Mar.2023)

Bug report

Setting the sortable configuration for a Gantt column via TagHelpers does not enable sorting for the column.

Reproduction of the problem

  1. Run the TagHelper Gantt Basic Usage demo - REPL
  2. Try to sort a column, for example the Start column

Current behavior

Columns are not sorted.

Expected/desired behavior

When sorting is enabled for a column it should be sortable.

Workaround

Set the sortable configuration for the desired columns after initialization of the Gantt component - REPL

    $("document").ready(function(){
        var gantt = $("#gantt").getKendoGantt();
        var options = gantt.options;
        options.autoBind = true;
        options.columns[2].columns[0].sortable = true; //enable sorting for Start column
        options.columns[2].columns[1].sortable = true; //enable sorting for End column
        gantt.setOptions(options);
    })

Environment

  • Kendo UI version: 2023.1.117
  • Browser: [all]
Unplanned
Last Updated: 13 Feb 2023 16:43 by Don Leduc
Created by: Don Leduc
Comments: 0
Category: Gantt
Type: Feature Request
1
I'd like to be able to configure the Gantt to hide its bottom "Add Task" button.
Unplanned
Last Updated: 11 Oct 2022 08:42 by Josh
Created by: Josh
Comments: 0
Category: Gantt
Type: Feature Request
1
It would be nice if the Gantt provides an option/configuration in order to have dependent task dates update when the parent task date changes. For example, in scenarios when the start of one task is dependent on the end of another task. In such a case, if the end of the initial task changes, the start of the dependent task should also change automatically.
Unplanned
Last Updated: 22 Sep 2022 09:28 by ADMIN
Created by: Dev
Comments: 1
Category: Gantt
Type: Feature Request
0

Is there a possibility to recognize when the user sorts a column in the GanttList?

Unplanned
Last Updated: 08 Jul 2022 16:35 by Christian
Created by: Christian
Comments: 0
Category: Gantt
Type: Bug Report
1

Bug report

Gantt CurrentTimeMarker reappears after the Grid and Gantt tables are resized from the pane between them

Reproduction of the problem

  1. Create a sample that contains the current date and time in it
  2. Set the CurrentTimeMarker
  3. Resize the Component
    image

Current behavior

After the resize the marker reappears

Environment

  • Kendo UI version: 2022.2.621
Completed
Last Updated: 25 May 2022 07:30 by ADMIN

Bug report

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".

Environment

  • Kendo UI version: 2020.1.406
  • jQuery version: x.y
  • Browser: [all ]
Unplanned
Last Updated: 16 Mar 2022 08:40 by Ankit
Created by: Alberto Zanetti
Comments: 2
Category: Gantt
Type: Feature Request
7
That is a missing feature which is contained in Jquery gantt.
Completed
Last Updated: 14 Sep 2021 07:50 by ADMIN
Created by: Sergio
Comments: 2
Category: Gantt
Type: Feature Request
0

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. 

  1. If user changes parent task order, he has to drag that parent task (A) and drop on another parent task (B). This way, task A will take task B order value (Shall task B take task A order?). If user drops parent task A on any child task, no order change will happen.
  2. Drag of any child task only will be valid in the same parent. I mean, dropping child task in any parent task or in other parent child task will do nothing.

Could you send me any example of this behaviour?

Regards!

 

Completed
Last Updated: 13 Sep 2021 11:01 by ADMIN
Release 2021.R3

Bug report

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

Reproduction of the problem

Create a UI for ASP.NET Core project and try to initialize the Gantt component with a datasource configured similar to the following:

image

Current behavior

The marked "OrderID" definition is not a valid one in UI for ASP.NET Core

Expected/desired behavior

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.

Environment

  • Kendo UI version: 2020.1.406
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 18 Jan 2021 09:09 by ADMIN
Release 2021.R1

Bug report

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.

Reproduction of the problem

  1. Open and run this example
  2. Switch to Kendo version after 2020.2.617

Current behavior

There are no tasks displayed in the Gantt.

Expected/desired behavior

The tasks should be displayed.

Environment

  • Kendo UI version: 2020.3.1118
  • Browser: [all]
Unplanned
Last Updated: 18 Nov 2020 14:51 by ADMIN
Currently,  Gantt would allow you to pass only the id, Text, Color, and Format for each resource. Custom fields could not be passed to the widget. I would like to have the possibility to add custom fields for Gantt resources. 
Unplanned
Last Updated: 31 Aug 2020 11:14 by ADMIN
Created by: Tom
Comments: 1
Category: Gantt
Type: Feature Request
0
I have been trying to display html in a Gantt cell the is not on the timeline. I have tried adding encode: true in the gantt properties, the gantt columns and the Gantt Data Source. with no luck.  What am I doing wrong?
Unplanned
Last Updated: 13 Sep 2019 06:55 by ADMIN
Created by: Alberto Zanetti
Comments: 1
Category: Gantt
Type: Feature Request
2
I'm working with the Gantt in asp.net core and it's okay apart for the height.
I need it to be as high as the data inside it, similar to what you can do with grids.
I searched but I didn't find anything that would allow it;
How i can achive this result?