Regression introduced in R3 2020.
Reproducible in the demos. Video attached.
Recording47.zip
A js exception is thrown:
kendo.all.js:126843 Uncaught TypeError: Cannot read property 'orderId' of null
No exceptions are thrown.
If we define a column template for a field that is defined in the resources configuration fo the Gantt, the template is not applied to it
The custom template is applied only to the "title" field
The user should be able to define a custom template for the "resources" fields
When planned tasks are displayed and rowHeight is set to the Gantt, the dependency lines are displayed incorrectly
Dependency lines are misplaced
The dependency lines should be rendered on the correct position
Set the padding-top to '.k-task-wrap' elements
Dojo
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
If you select a custom view in the Gantt and shrink the window so that a DropDownList would appear, the custom view does not appear as selected in the DropDownList.
Quaterly custom view is not displayed as the selected value of the DropDownList
Quaterly custom view should be displayed as the selected value of the DropDownList
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 .
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.
The menu that determines where to add new task incorrectly appears after creating a new task and editing an existing one.
The Add Child/Above/Below menu appears unexpectedly.
The menu should not appear and a new task should be added at the bottom of the list.
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
The validation message remains and the user must again focus and blur the Start Date picker for the message to disappear.
The validation should be removed automatically after picking a EndDate that is after the StartDate.
When tasks are reordered in Gantt duplicated requests are sent for updating.
For example, in case two tasks on the same level are changing their places, four requests are sent, two by two the requests are the same.
In case a task is moved on a different level multiple requests are sent, as all are duplicated.
There should be no duplicated requests when reordering tasks in Gantt
This is a regression introduced with R3 2020 (2020.3.915)
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.
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.
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.
In a Gantt that has a DropDownList as editor in the TreeList, if you click on the DropDownList's wrapper to open the widget, it will close the cell instead.
Regression introduced with 2022 R1
The cell closes.
The cell should remain open and the DropDownList should open
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')
The following error is thrown:
kendo.all.js:133531 Uncaught TypeError: Cannot read properties of undefined (reading 'lockable')
There should be no error in the console when reordering columns in Gantt, even if there is a Grid on the page.
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.
When the autoSync option of the GanttDependencyDataSource is set to true, two identical requests are sent to the server when creating a new dependency.
Two identical Create requests are sent to the server
Only one request should be sent to the server
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
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.
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
The tasks that have not been selected, should not be displayed as selected after filtering.
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.
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
The value of the NumericTextBox should accept changes when the culture is set.