Unplanned
Last Updated: 20 Mar 2024 12:52 by Dario

Bug report

When the culture is changed the NumericTextBox with decimals does not accept valid values when it is rendered inside an editable popup. The issue can be observed when the NumericTextBox is rendered for editing in other components such as Gantt and Grid.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@gdenchev/UKAVAnaZ
  2. Try to edit a cell and decrease the number either by entering digits or by using the arrows.

Current behavior

A validation error that the value is not valid appears.
The same behavior occurs in the Gantt component if you try to edit a task, then select Resources and try to edit the Units value - https://dojo.telerik.com/@NeliK/uZepIbId

Expected/desired behavior

The value of the NumericTextBox should accept changes when the culture is set.

Environment

  • Kendo UI version: 2024.1.319
  • jQuery version: x.y
  • 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: 09 Feb 2024 13:36 by ADMIN
Created by: Admin
Comments: 2
Category: Gantt
Type: Bug Report
4

Bug report

The dependencies in the Gantt can not be removed.

Reproduction of the problem

  1. Open the demos - https://demos.telerik.com/kendo-ui/gantt/index
  2. Select a dependency line and press the 'Delete' key.

Current behavior

Nothing happens, there is no confirmation popup, and the dependency is not removed.

Expected/desired behavior

A confirmation dialog for confirming the deletion appears and the dependency should be removed.

The issue is a regression starting with the 2023 R2 SP1 ( 2023.2.718) version

Environment

  • Kendo UI version: 2023.2.718
  • Browser: [all ]
Completed
Last Updated: 13 Dec 2023 09:28 by ADMIN
Created by: Imported User
Comments: 11
Category: Gantt
Type: Feature Request
12
It would be nice if tasks could be added to gantt that are missing a start date, end date or both dates.

For our use case this feature is not only useful, but mandatory. We are visualising a project workflow that goes through several phases and steps. Within our application, the client fills in the dates for these tasks and milestones as the project progresses. Not all dates are filled-in at all times, however when a project manager creates a gantt chart, he wants to see all the tasks. A task without a date is an information in itself. 

Currently we have to create a fake date entry for tasks without dates.
Completed
Last Updated: 29 Nov 2023 08:23 by ADMIN
Created by:
Comments: 0
Category: Gantt
Type: Bug Report
0

Bug report

When there is a selected item and filtering is performed in the Gantt, sometimes a task in the new filter result is displayed as selected.

Reproduction of the problem

  1. Open the demo - https://demos.telerik.com/kendo-ui/gantt/columns
  2. Filter the tasks by ID 18
  3. Select the task with ID = 18
  4. Filter the tasks that have ID equal to 11

Current behavior

Sometimes the task with ID 11 is marked as selected. The issue does not appear consistently, so you may need to perform the test multiple times.
screencast - https://somup.com/c0XZ6DgaRA

Expected/desired behavior

The tasks that have not been selected, should not be displayed as selected after filtering.

The issue is a regression starting with the 2022 R1 release

Environment

  • Kendo UI version: 2023.3.1114
  • Browser: [all]
Completed
Last Updated: 27 Nov 2023 16:56 by ADMIN

Bug report

When the tasks in the Gantt's TreeList are moved/dragged an item appears over them. When the visible size of the TreeList is small, dragging tasks inside it results in unavailability to understand which task is currently being dragged because the draggable item is partially hidden.

Reproduction of the problem

  1. Open this Dojo
  2. Move the Splitter in the Gantt component to the left, in a way at least half of the initially visible TreeView is hidden.
  3. Select Task 2 and drag it.

Current behavior

The draggable item is initialized with a negative "left" CSS style. The task name is partially visible or not visible at all.
image

Expected/desired behavior

The draggable item should be visible. The task name should be visible.

Environment

  • Kendo UI version: 2020.1.406
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 27 Nov 2023 16:55 by ADMIN
Created by: Amitesh
Comments: 3
Category: Gantt
Type: Bug Report
0

Hi,

In Dojo chose Kendo UI 2020 R1 SP2 library and created a Gantt chart with two summaries and a task. Each summary has a child task.

Set rowHeight to 40px.

Expand Summary1. Summary2 changed position and moved to the top of the row.

Collapse Summary1. Summary2 still at the top of the row.

Also, tried with other libraries, the result is the same.

Noticed that if rowHeight is not set, summary doesn't change its position.

Example here: https://dojo.telerik.com/IriJegeX

Please find the screenshot attached.

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>Kendo UI Snippet</title>

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.1.406/styles/kendo.default-v2.min.css"/>

    <script src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2020.1.406/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.1.406/styles/kendo.common.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.1.406/styles/kendo.rtl.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.1.406/styles/kendo.default.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.1.406/styles/kendo.mobile.all.min.css">
<script src="https://kendo.cdn.telerik.com/2020.1.406/js/angular.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2020.1.406/js/jszip.min.js"></script>
</head>
<body>

<div id="gantt"></div>
<script>
$("#gantt").kendoGantt({
  rowHeight: "40px",
  dataSource: [{
    id: 1,
    orderId: 0,
    summary: true,
    parentId: null,
    title: "Summary1",
    start: new Date("2014/6/17 9:00"),
    end: new Date("2014/6/17 11:00")
  },
  {
    id: 2,
    orderId: 0,
    parentId: 1,
    title: "Task1",
    start: new Date("2014/6/17 9:00"),
    end: new Date("2014/6/17 11:00")
  },
  {
    id: 3,
    orderId: 1,
    summary: true,
    parentId: null,
    title: "Summary2",
    start: new Date("2014/6/17 9:00"),
    end: new Date("2014/6/17 11:00")
  },
  {
    id: 4,
    orderId: 0,
    parentId: 3,
    title: "Task2",
    start: new Date("2014/6/17 9:00"),
    end: new Date("2014/6/17 11:00")
  },
  {
    id: 5,
    orderId: 2,
    parentId: null,
    title: "Task3",
    start: new Date("2014/6/17 9:00"),
    end: new Date("2014/6/17 11:00")
  }]
});
</script>
</body>
</html>

 

Thanks.

  
Completed
Last Updated: 14 Nov 2023 09:10 by ADMIN
Created by: Sreegith
Comments: 1
Category: Gantt
Type: Bug Report
0

Team,

Dojo ref : https://dojo.telerik.com/@Aswathi/uXoJoSUq 

 

When I edit the calendar value and click on any other row/cell it doesn't get saved. If I click outside it gets saved. I see it's due the property 

.

If we set it  editable:true , it's breaking the reorder functionality.

 

Is there a way to fix this ?

 

Appreciate your support.

 

Regards,

Sujith

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

Unplanned
Last Updated: 13 Jul 2023 06:21 by ADMIN
Created by: Peter
Comments: 2
Category: Gantt
Type: Feature Request
4
That is for 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: 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: 17 Apr 2023 11:40 by Minas Gerais Administração
Created by: Imported User
Comments: 6
Category: Gantt
Type: Feature Request
8
i hope i can configure working day and off day
Completed
Last Updated: 10 Apr 2023 14:16 by ADMIN
Release R2.2023-Increment.2(26.Apr.2023)

Bug report

If you expand/collapse the top parent node, it is marked as dirty.

Regression introduced with R1 2023

Reproduction of the problem

  1. Open the Gantt Overview demo - https://demos.telerik.com/kendo-ui/gantt/index
  2. Collapse the top node

Current behavior

The top node is marked as dirty when collapsed

Expected/desired behavior

The top note shouldn't be marked as dirty upon collapsing

Environment

  • Kendo UI version: 2023.1.314
  • Browser: [all]
Completed
Last Updated: 06 Jan 2023 09:55 by ADMIN
Release R1.2023-Increment.3(18.Jan.2023)

Bug report

When there are Grid and Gantt on the same page and a column in the Gantt has reordered an error in the console is thrown:
kendo.all.js:133531 Uncaught TypeError: Cannot read properties of undefined (reading 'lockable')

Reproduction of the problem

  1. Open the Dojo. There is no relation in the configuration between the Grid and the Gantt widgets.
  2. Reorder the columns in Gantt

Current behavior

The following error is thrown:
kendo.all.js:133531 Uncaught TypeError: Cannot read properties of undefined (reading 'lockable')

Expected/desired behavior

There should be no error in the console when reordering columns in Gantt, even if there is a Grid on the page.

The issue is a regression starting with: 2021.3.1207

Environment

  • Kendo UI version: 2022.2.802
  • Browser: [all]
Unplanned
Last Updated: 05 Jan 2023 21:51 by Pochun
Created by: Pochun
Comments: 0
Category: Gantt
Type: Feature Request
1

Hi Team,

I would like to request a way to export a larger amount of records fast and easily with the Kendo UI Gantt.  I have tried with over 800, but it runs sluggish.  I am aware of the limitations, but would like to request a faster way to export to PDF.

Thank you!

Unplanned
Last Updated: 26 Dec 2022 18:19 by Washington
Created by: christer
Comments: 5
Category: Gantt
Type: Feature Request
25
Add a way to highlight the critical path in the Gantt Chart. This is a basic feature in project management and would be really great if you can implement,.
Completed
Last Updated: 23 Dec 2022 13:39 by ADMIN
Release R1.2023-Increment.3(18.Jan.2023)
Created by: Vedad
Comments: 1
Category: Gantt
Type: Bug Report
1

Bug report

The change event incorrectly triggers at initialization of the Gantt - Regression with 2022.1.301
Also, the event does not trigger when selecting a task from the timeline - Regression with 2022.3.913

Reproduction of the problem

  1. Open this example - https://dojo.telerik.com/@martin.tabakov@progress.com/OVigiKEX/3
  2. Check the Kendo Console - the change event triggers right after initialization
  3. Select a task from the Gantt timeline - the change event doesn't trigger

Current behavior

Change event triggers after initialization and does not trigger after selection in timeline

Expected/desired behavior

Change event shouldn't trigger after initialization and should after selection in timeline

Environment

  • Kendo UI version: 2022.3.1109
  • Browser: [all]
Completed
Last Updated: 23 Dec 2022 13:39 by ADMIN
Release R1.2023-Increment.3(18.Jan.2023)
Created by: Vedad
Comments: 2
Category: Gantt
Type: Bug Report
1

Bug report

When you collapse a selected task in the Gantt, the selection is lost

Reproduction of the problem

  1. Open the Gantt Overview demo - https://demos.telerik.com/kendo-ui/gantt/index
  2. Select the Software validation task
  3. Collapse the selected task

Current behavior

The selection is lost

Expected/desired behavior

The selection should be preserved

Environment

  • Kendo UI version: 2022.2.802
  • Browser: [all]
Unplanned
Last Updated: 06 Dec 2022 12:11 by ADMIN
Created by: Imported User
Comments: 10
Category: Gantt
Type: Feature Request
25
Incorporate page breaks into the Gantt PDF Export and include option to repeat column headers on each page.
Unplanned
Last Updated: 16 Nov 2022 21:44 by Vishal
Created by: Vishal
Comments: 0
Category: Gantt
Type: Feature Request
1

Hi Team,

I would like to request the functionality to easily persist the state of the Kendo UI Gantt like in this Kendo UI Grid example.  Maybe include getOptions/setOptions methods for the component. 

Thank you!

1 2 3 4 5