Unplanned
Last Updated: 02 Mar 2021 06:50 by ADMIN
Created by: Angus
Comments: 1
Category: Gantt
Type: Feature Request
1

Delete Gantt dependency requires to click on it and press the delete key.

How can I delete it on a mobile device without a physical keyboard?

Unplanned
Last Updated: 01 May 2020 04:05 by ADMIN
Created by: Boyan
Comments: 0
Category: Gantt
Type: Feature Request
1
Make the gantt mobile, similar to Scheduler and Grid. Make the edit form slide if you work on a phone or a tablet.
Unplanned
Last Updated: 26 Mar 2020 18:32 by ADMIN
Created by: Kaloyan
Comments: 0
Category: Gantt
Type: Feature Request
1
I would like to be able to reorder rows (items) by drag and drop but I want to disable them nesting. I would like to be possible to configure whether dropping a task would create a nested task or just reorder the tasks.
Unplanned
Last Updated: 02 Mar 2020 14:00 by ADMIN

It would be great if text within the Treelist section of the Gantt chart would wrap.

Configuring the rowHeight increases the height of the table row, but the long text is still not wrapped. Here is a sample dojo demonstrating the current behavior: https://dojo.telerik.com/EtEViREL

An ideal solution would be something that increases the size of the corresponding timeline row to match the treeview row, and to move down things like dependency arrows so it looks like everything still matched properly.

Unplanned
Last Updated: 29 Nov 2019 13:51 by ADMIN
Created by: Mark
Comments: 1
Category: Gantt
Type: Feature Request
1

I have a gantt chart with tasks, resources, and assignments. I want to enforce a many-to-one relationship between tasks and resources, that is, I want to be able to assign a single resource to any number of tasks, but each task can only have 1 resource at a time. A (conceptually) simple sample implementation would be to change the checkboxes to a radiobutton in the 'assign' dialog window, from the 'edit' dialog.

I understand there is currently no way to enforce this type of relationship or the restrict the user from selecting more than 1 assignment in the assignment dialog window, so I am requesting a way to do either (or both) of these things. I would imagine a setting in the gantt or taskDataSource for enforcing the relationship, or a setting in the assignment field for switching the dialog box to radio button like behaviour.

Unplanned
Last Updated: 18 Aug 2021 10:09 by ADMIN
Created by: Airat
Comments: 1
Category: Gantt
Type: Bug Report
0

Hi!

For small tasks delete button overlaps a button for creating dependencies. How can we fix this behaviour?


Unplanned
Last Updated: 06 Oct 2021 11:01 by Magnus

Bug report

When the validation message appears that the Start Date should be before the End Date, picking a proper End Date does not automatically remove the validation message in the Gantt.

Workaround: call the validate method in the change event of the End DatePicker.
https://dojo.telerik.com/@martin.tabakov@progress.com/IQiRukIN/11

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/IQiRukIN/10
  2. Edit an existing task or create a new one.
  3. In the Start DatePicker, choose a date that is after the EndDate, so that the validation message would appear.
  4. Pick an EndDate that is after the StartDate.

Current behavior

The validation message remains and the user must again focus and blur the Start Date picker for the message to disappear.

Expected/desired behavior

The validation should be removed automatically after picking a EndDate that is after the StartDate.

Environment

  • Kendo UI version: 2021.3.914
  • Browser: [all]
Unplanned
Last Updated: 23 Nov 2021 06:49 by Daren

Bug report

If a date is configured in Gantt by using the date method or views.date configuration and then a task is edited, the Gantt displays the initial date after editing a task.

Reproduction of the problem

  1. Open the Dojo
  2. Scroll horizontally and edit a task (for example 'Architecture')

Current behavior

After the task is edited the horizontal scroll position is set to its initial position, not to a position according to the edited task. Thus, the user needs to scroll again in order to find the edited task.
The behavior is not the same when the date method/configuration is not used. Also, the behavior is not the same if we first switch between the 'Day', 'Week', 'Month' views before editing a task.

Expected/desired behavior

Even if the initial date of the Gantt is configured, when the user edits a task, the date should not be persisted. The horizontal scroll should be in the same position as before editing a task.

Environment

  • Kendo UI version: 2021.3.1109
  • Browser: [all ]
Unplanned
Last Updated: 04 Aug 2021 08:48 by ADMIN

I would like to be able to toggle the planned vs actual view on Gantt outside of the Gantt toolbar. This can be achieved using private methods as in the example below and the Dojo linked here:

```

function changeValue(){
          var gantt = $('#gantt').data('kendoGantt')
          var timeline = gantt.timeline;

          var showPlanned = $('#gantt input.k-gantt-planned-switch').data('kendoSwitch').check()
          $('#gantt input.k-gantt-planned-switch').data('kendoSwitch').check(!showPlanned)

          gantt.wrapper.toggleClass("k-gantt-planned");
          timeline._setPlanned(!timeline.options.showPlannedTasks);
          timeline._render(gantt.dataSource.taskTree());
          timeline._renderDependencies(gantt.dependencies.view());
 }

```

However, having a public method for showing the planned tasks (for example showPlannedTasks(true) ) would be very helpful.

                    
Unplanned
Last Updated: 31 Jan 2022 13:27 by ADMIN
Created by: Stoyan
Comments: 0
Category: Gantt
Type: Feature Request
0
When summary/parent tasks in the Gantt are edited in the timeline the duration of the parent task is not always consistent with the net duration of its children.
Please review this Screen capture for the described behavior: https://www.screencast.com/t/la1PzVZaYc


This issue can be avoided, if the duration of the parent tasks can be configured to be fixed. Then the parent task's duration will only be dependant on the duration of its children.

Furthermore the timeframe of the parent task would be editable by changing the starting date.
Unplanned
Last Updated: 16 Jun 2021 13:56 by ADMIN

Hi, 

I use a Gantt chart like this one. 

<script>
  $("#gantt").kendoGantt({
  dataSource: [{
    id: 1,
    orderId: 0,
    parentId: null,
    title: "Task1",
    start: new Date("2021/6/1"),
    end: new Date("2021/6/3")
  }],
  range: {
    start: new Date("2021/05/31"),
    end: new Date("2021/12/01")
  },
  views: ["month"]
});

In the example, the Gantt chart starts on May 31, 2021.
In the first header line we see the month of May, followed by July. There is no month of June.

https://dojo.telerik.com/@lydbell/ULAPUdOV

This only happens when the last day of the month is Monday .

 

 

Unplanned
Last Updated: 25 Mar 2021 13:12 by Stanislav

Bug report

When planned tasks are displayed and rowHeight is set to the Gantt, the dependency lines are displayed incorrectly

Reproduction of the problem

  1. Open the Dojo

Current behavior

Dependency lines are misplaced

Expected/desired behavior

The dependency lines should be rendered on the correct position

Workaround

Set the padding-top to '.k-task-wrap' elements
Dojo

Environment

  • Kendo UI version: 2022.1.224
  • Browser: [all]
Unplanned
Last Updated: 14 Jun 2024 09:22 by å¹³

Bug report

When tasks on the same level are dragged and dropped in order to change their relationship as parent - child, the entire Gantt collapses

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/EZOXuguC
  2. Expand 'Task 1'
  3. Drag Task 4 over Task 5 and drop it so it could become its child

Current behavior

The entire Gantt is collapsed.

Expected/desired behavior

The current expanded/collapsed state should not be changed.

The issue is a regression starting with version 2020.3.1021

Environment

  • Kendo UI version: 2024.2.514
  • Browser: [all ]
Unplanned
Last Updated: 19 Apr 2023 08:45 by n/a

Bug report

When the autoSync option of the GanttDependencyDataSource is set to true, two identical requests are sent to the server when creating a new dependency.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/AGOJUyAp
  2. Open the Network Tab
  3. Create a new task dependency

Current behavior

Two identical Create requests are sent to the server

Expected/desired behavior

Only one request should be sent to the server

Environment

  • Kendo UI version: 2023.1.314
  • Browser: [all]
Unplanned
Last Updated: 13 Mar 2024 13:20 by ADMIN
Created by: Michael D
Comments: 4
Category: Gantt
Type: Bug Report
0

As all grids, the kendo Gantt chart's rows change their color when hovering. However, the background overlaps the border between columns and makes them disappear for the hovered row.

You can reproduce the described behavior by hovering one of the rows in this DOJO.

Unplanned
Last Updated: 20 Oct 2023 10:02 by David
Created by: David
Comments: 0
Category: Gantt
Type: Feature Request
0

Bug report

Error is thrown in the console when an event is dragged.

Reproduction of the problem
Dojo: https://dojo.telerik.com/ORuSEYoW

Expected/desired behavior
Error shall not appear

 

Environment
Kendo UI version: [all]
jQuery version: [all]
Browser: all

1 2 3