Unplanned
Last Updated: 11 Aug 2023 12:51 by Help

In "Planned vs Actual" scenario, and we noticed a strange behaviour when we have same task Start and End date, and both planned dates null: in this case a circle ("planned" symbol) appears on the left side of gantt chart... but planned dates are null.
When task Start and End dates are different, and planned dates are null, the circle correctly does not appear.

Unplanned
Last Updated: 17 May 2022 11:32 by ADMIN

In DayView there should be an alternative option to see number of days the project is running. For example a project running for 6 months, the numbers should be shown from 1 to 180 days and progress to be displayed against those days.

 

 

Unplanned
Last Updated: 30 Apr 2021 15:07 by ADMIN

In the attached project, if you try to reorder task 10 above task 6, both tasks will have the same OrderID.

The same is not observed if you reorder Task 4 to be above Task 1.

 

 

Duplicated
Last Updated: 24 Feb 2021 14:12 by ADMIN
Created by: Kasim
Comments: 9
Category: Gantt
Type: Feature Request
8

How can we plot planned Vs Actual on RadGantt chart? We need two rows in the Gantt for each task. The first row to show planned while the second row shows actual progress. Both Actual and Planned progress to be shown in different colors.

Sample output is attached for your quick reference.

Unplanned
Last Updated: 08 Apr 2020 16:12 by ADMIN
Created by: Kasim
Comments: 2
Category: Gantt
Type: Feature Request
3

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.

Completed
Last Updated: 12 Nov 2018 12:38 by ADMIN
Workaround - placing the following script after the ScriptManager: 
<script type="text/javascript">
    Telerik.Web.UI.RadGantt.prototype.postback = function (args) {
        var postbackFunction = this.get_postBackReference().replace("arguments",
                Sys.Serialization.JavaScriptSerializer.serialize(args).replace(/\\/g, "\\\\").replace(/'/g, "\\'"));

        eval(postbackFunction);
    }
</script>
Completed
Last Updated: 15 Aug 2018 05:56 by ADMIN
The task's get_customFieldClientName() and set_customFieldClientName(newValue) methods always work with the last custom field in the CustomFields collection.

There are two workarounds until an official solution is available:
- instead of the function getter, use task._data.customFieldClientName . The setter cannot be worked around that easily. This can work for you if you only show data or do not need to edit custom fields
- OR, add the following function override at the end of the </form>  - a sample is attached below
        <script>
            Telerik.Web.UI.RadGantt.prototype.initializeCustomFields = function () {

                var _createCustomFieldGetterAndSetter = function (fieldName) {
                    var taskType = Telerik.Web.UI.GanttTask;
                    taskType.prototype["get_" + fieldName] = function () {
                        return this._data[fieldName];
                    };

                    taskType.prototype["set_" + fieldName] = function (value) {
                        var updateInfo = {};
                        updateInfo[fieldName] = value;
                        this._data[fieldName] = value;
                        this._update(updateInfo);
                    };
                }

                var customFields = this.get_customTaskFields();
                for (var i = 0, length = customFields.length; i < length; i++) {
                    _createCustomFieldGetterAndSetter(customFields[i].clientPropertyName);
                }
            }
        </script>
Completed
Last Updated: 12 May 2021 12:59 by ADMIN
Release R2 2021
There is a need to add custom buttons to the button strip of RadGantt.

The buttons for "Day | Week | Month" view appears on the top right of the RadGantt. The "Export to Pdf" button appears on the top left corner. I would like to add new buttons next to the "Export to Pdf" button. 

I would suggest taking this as a feature request. There are many scenarios where we need to have custom buttons in the toolbar of the RadGantt. Let the priority be decided by public opinion.
Unplanned
Last Updated: 18 Jun 2020 15:11 by ADMIN
Implement a string indexer or a method to get column by unique name in RadGantt. 

Example  of string indexer
//
// Summary: This class represents collection of Telerik.Web.UI.GanttBoundColumn.
//
public class ColumnCollection : BaseCollection<GanttBoundColumn>
{
	public ColumnCollection(){...}
	public ColumnCollection(IGantt owner){...}
	
	public GanttBoundColumn this[string ColumnName]
	{
	   //considering columnCollection is internal variable holding list of columns.
		return columnCollection.Where(c => c.UniqueName == ColumnName).FirstOrDefault();
	}
}

Example of a method can be similar to RadGrid's GetColumn and GetColumnSafe methods: https://docs.telerik.com/devtools/aspnet-ajax/controls/grid/how-to/Common/using-the--getitems-getcolumn-and-getcolumnsafe-methods.
Unplanned
Last Updated: 13 Aug 2018 04:25 by Kasim
ADMIN
Created by: Attila Antal
Comments: 1
Category: Gantt
Type: Feature Request
1
Integrate validation of unique names that are being assigned through the UniqueName property of the GanttBoundColumn class to prevent the same assigned two times.

E.g.

RadGantt myGantt = new RadGantt();
GanttBoundColumn boundColumn = new GanttBoundColumn();
boundColumn.UniqueName = "Unique";
myGantt.Columns.Add(boundColumn);

GanttBoundColumn boundColumn2 = new GanttBoundColumn();
boundColumn.UniqueName = "Unique"; // this should be validated
myGantt.Columns.Add(boundColumn2);

Unplanned
Last Updated: 14 Jun 2021 07:59 by ADMIN
Created by: Mudasir
Comments: 2
Category: Gantt
Type: Feature Request
6
It will be helpful if we have import mpp (MS Project file) option instead of XML, this will ease users and they don't need to convert file to xml and than upload.
This is already done by other providers like bryntrum and i think it is a must as customers are suffering with export to xml and upload.

Hope telerik applies this suggestion!
Unplanned
Last Updated: 05 Jun 2024 13:38 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 11
Category: Gantt
Type: Feature Request
6
Allow RadGantt to export the data to Excel
Completed
Last Updated: 12 May 2021 12:49 by ADMIN
Release R2 2021
ADMIN
Created by: Peter Milchev
Comments: 1
Category: Gantt
Type: Feature Request
1
Allow setting a client template for the task's tooltip. 

Workaround: https://www.telerik.com/support/code-library/custom-task-tooltip
Completed
Last Updated: 12 May 2021 12:57 by ADMIN
Release R2 2021
ADMIN
Created by: Peter Milchev
Comments: 1
Category: Gantt
Type: Feature Request
1

Currently, the RadGantt allows only format strings as a value for the WeekHeaderDateFormat property. For example, allowing a template similar to Kendo Gantt:

Use case - show week number instead of the dates. Workaround to show week number: The suggestion is based on the https://demos.telerik.com/aspnet-ajax/gantt/examples/accessibility-and-internationalization/localization/defaultcs.aspx demo. What you should add to the Gantt markup declaration is the WeekView-WeekHeaderDateFormat="dd/MM/yyyy" and OnClientDataBound="OnClientDataBound" properties. // https://stackoverflow.com/questions/6117814/get-week-of-year-in-javascript-like-in-php function getWeekNumber(d) { // Copy date so don't modify original d = new Date(Date.UTC(d.getFullYear(), d.getMonth(), d.getDate())); // Set to nearest Thursday: current date + 4 - current day number // Make Sunday's day number 7 d.setUTCDate(d.getUTCDate() + 4 - (d.getUTCDay() || 7)); // Get first day of year var yearStart = new Date(Date.UTC(d.getUTCFullYear(), 0, 1)); // Calculate full weeks to nearest Thursday var weekNo = Math.ceil((((d - yearStart) / 86400000) + 1) / 7); // Return array of year and week number // return [d.getUTCFullYear(), weekNo]; return weekNo } function OnClientDataBound(sender, args) { if (sender.get_viewsData()[sender.get_selectedView()].type == "week") { $telerik.$('.rgtTimelineWrapper thead>tr:first .radHeader', sender.get_element()).each(function (index) { var $this = $(this) var datestring = $this.text().substring(0, 10); var date = new Date(datestring); var weekNumber = getWeekNumber(date) $this.text("Week " + weekNumber) }) } }

Unplanned
Last Updated: 18 Jun 2020 16:23 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: Gantt
Type: Feature Request
1
Allow the implementation of Custom views or extending the available ones similar to the Kendo UI Gantt - https://docs.telerik.com/kendo-ui/controls/scheduling/gantt/how-to/creating-custom-view
Unplanned
Last Updated: 18 Jun 2020 16:23 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: Gantt
Type: Feature Request
3
Similar to what we have in other controls, when there is are no records, we should have a specific template where we can show an image or some text that shows that the Gantt chart could not be displayed since there is no data.

Attached is a sample implementation which can be used as a temporary workaround. To run the project, place the .NET 4.5 version of the Telerik.Web.UI.dll in the bin folder of the project.
Completed
Last Updated: 15 Oct 2020 18:23 by ADMIN
Hello, this is for the list of columns on the left side of the Gantt, called TreeListView. If it would be possible to add additional columns that we select or implement during data binding, for example: Duration, other dates, description, task type, and many others that the client will select dynamically, so they must not be a static list of columns. 

Thank you,
-Sam 
Completed
Last Updated: 12 May 2021 12:28 by ADMIN
Release R2 2021
In the RadGantt, when using WebServices with the Gantt, there is no OnClientRequestEnd client side event.

We have a scenario where we're wanting to be able to track whether or not an insert/update event succeeded (and update a control elsewhere on our page if it did) or failed (and show an alert if it didn't). however there is currently no event handler for when WebService requests from the RadGantt have completed.
Completed
Last Updated: 03 Feb 2017 13:57 by ADMIN
Unplanned
Last Updated: 21 Jan 2022 07:00 by Andrea
1 2 3