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: 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: 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!

Unplanned
Last Updated: 29 Aug 2022 08:44 by ADMIN

Hi,

Currently, you can change start OR end for the package without problems, and therefore you can change the duration this way, but for the project or phase, it is not possible.

Since these dates are changeable one by one manually through the table on the left or popup form, there is no logical reason why they can't be changed in the timeline as well.

Please could you consider adding this to the gantt widget.

Thank you very much.

Unplanned
Last Updated: 04 Jul 2022 14:58 by Abilio
Currently, when a child task in the Gantt is edited the start/end time of the parent task will be updated accordingly. I would like to have the possibility to disable this behavior and have the possibility to edit the child's tasks' start and end times without updating the start and end times of the parent task.
Unplanned
Last Updated: 04 Mar 2022 21:08 by Austin
Created by: Austin
Comments: 0
Category: Gantt
Type: Feature Request
1

Hi Team,

I would like to request an easy, built-in way to format the dateTimePickers with the popup editor for the Kendo UI Gantt.  Currently, the validation will not allow for the editor to be set to a specific format without creating a dedicated editable.template.

Thank you!

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 Dec 2021 06:59 by ADMIN
Created by: Magnus
Comments: 1
Category: Gantt
Type: Feature Request
2

Hi,

Want the ability to filter on the resource column.

Dojo example.
https://dojo.telerik.com/iZixAfiV

 

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: 19 Mar 2021 21:12 by ADMIN
Created by: Philip
Comments: 0
Category: Gantt
Type: Feature Request
1
Hi Team,

Currently the Actual start and Actual end datetime fields are required fields. This is an error in principle as the Actual start and Actual End cannot be required for the following reasons:

The practical application of using the Gantt for Planned vs Actuals purposes of any kind is that a task is initially planned by setting the Planned Start and Planned End date of the task. A planned task has not necessarily begun, so there is no actual start or end of the task. For this reason, the users cannot yet fill the actual start and actual end. Therefore the Actual Start and Actual End should allow for the fields to be non-required fields.

Thanks!
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: 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: 16 Apr 2020 09:53 by ADMIN
Created by: Kasim
Comments: 1
Category: Gantt
Type: Feature Request
2

Would like to show column grouping for a few columns in the RaddGantt.

e.g.

  • Planned Start and Planned End to be grouped under Planned
  • Actual Start and Actual End to be grouped under Actual
  • Financial Detail columns to be grouped under Task Financials


Also, would like to add to the query, how can I have the Gantt chart with the dates shown vertically as in the image attached. I don't want the Week or Month name coming in the grouping. Just dates in the timeline view.

Reference - Feature request submitted for RadGantt for ASP.NET AJAX

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.

Declined
Last Updated: 04 Feb 2020 08:12 by ADMIN
Created by: Anna
Comments: 1
Category: Gantt
Type: Feature Request
0
In the Gantt widget, columns can have a custom format, but not a custom template. I'd lie a template like grids and treelists have.
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: 23 Jan 2020 07:11 by ADMIN
Created by: Ben
Comments: 3
Category: Gantt
Type: Feature Request
5
I would love to see a feature added to the MVC Gantt control that would allow filtering tasks within the Gantt. Currently when we filter tasks in our Gantt using an external filter which filters the datasource tasks are dropped from the result set if their parent tasks do not meet the filter criteria. This is obviously a problem and makes filtering useless when tasks are dropped when they actually meet the criteria. I would like to see the filtering work as the TreeView and TreeList controls do. When you filter a column in those controls the parent items are returned regardless of whether they meet the filter criteria. This is needed in a hierarchical control like the Gantt chart.

This would be a great addition to the control. In the meantime, we'll either leave filtering out of our application or try to find a way to recursively gather all of the parent task ids and include them in our service to return tasks that meet the filter criteria.

Thanks for considering!
Ben
Unplanned
Last Updated: 07 Feb 2020 21:13 by ADMIN
Created by: Sujeet
Comments: 1
Category: Gantt
Type: Feature Request
2

Hi,

I am using kendo's Gantt chart. But I unable to achieve few things using the existing Gantt chart features.
Following are the features I request should be provided for Gantt chart:

  1. Multiple tasks/milestones in a row.
  2. Multiple rows for a parent task.
  3. If space is not available in preceding row(s), overlapping tasks should be moved to next row.
  4. User should be able to provide start date for the quarter in a fiscal calendar. Ex: If user give 01st-June as the start date, then Q1 should start from 01st-June. Hence, quarters will be defined as: Q1(June-Aug), Q2(Sept-Nov), Q3(Dec-Feb), Q4(Mar-May)

Gantt chart requirement point 1-4

Refer above image for point 1-4

 

       5. If task label is exceeding the width of the task, then height of the task should be increased to accommodate task label(in other words, text should            be wrapped). Also, font-size of the text should be responsive, that is, font-size should be reduced to accommodate entire text in minimum task height.

Gantt chart Requirements point 5

Refer above image for point 5

 

1 2 3 4