New to Telerik UI for ASP.NET MVC? Download free 30-day trial

Columns

The columns in the TreeList section of the Gantt can be individually configured. The following configuration options are supported:

  • Bound—Binds the task to the specified model field.
  • Columns—The columns which will be rendered as child columns under this group column header.
  • Editor—Provides a way to specify a custom editing UI for the column.
  • Editable—Indicates if the column can be edited.
  • Expandable—If set to true, the column will show the icons that are used for expanding and collapsing child rows. By default, the first column of the TreeList is expandable.
  • Field—The field from the task model which will be used to populate the column.
  • Filterable—If set to true and if filtering is enabled, a filter menu will be displayed for this column. If set to false, the filter menu will not be displayed. By default, a filter menu is displayed for all columns when filtering is enabled through the filterable option.
  • Filterable.Ui—The role data attribute of the widget that is used in the filter menu, or a JavaScript function which initializes that widget.
  • Format—The format in which the data in the column is represented.
  • HeaderAttributes—The HTML attributes of the table header cell (th) that is rendered for the column.
  • HeaderTemplate—The template which renders the column header content. By default, the value of the title column option is displayed in the column header cell.
  • HeaderTemplateId—The id of the header template.
  • Hidden—If set to true, the Gantt will not display the column. By default, all columns are displayed.
  • HtmlAttributes—The HTML attributes of the table cell (td) that is rendered for the column.
  • Menu—If set to true, the Gantt will display the column in the column menu. By default, the column menu includes all data-bound columns.
  • MinScreenWidth—The pixel screen width below which the column will be hidden. The setting takes precedence over the hidden setting and the two cannot not be used at the same time.
  • Sortable—Indicates if the column can be sorted. If set to true and sorting is enabled, the user can click the column header and sort the treelist by the column field. If set to false, sorting will be disabled for this column. By default, all columns are sortable if sorting is enabled though the sortable option.
  • Sortable.Compare—A JavaScript function for comparing the values.
  • Template—The template which renders the column content. The Gantt renders table rows (tr) which represent the data source items. Each table row consists of table cells (td) which represent the treelist columns. By default, the HTML-encoded value of the field is displayed in the column.
  • TemplateId—The id of the column template.
  • Title—The header text of the column.
  • Width—The width of the column.

The example below demonstrates how to configure Gantt columns.

    @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
        .Name("gantt")
        .Columns(columns =>
        {
            columns.Bound(c => c.TaskID).Title("ID").Width(50);
            columns.Bound(c => c.Title).Editable(true).Sortable(true);
            columns.Bound(c => c.Start).Width(100).Editable(true).Sortable(true);
            columns.Bound(c => c.End).Width(100).Editable(true).Sortable(true);
        })
        .Resizable(true)
        .Views(views =>
        {
            views.DayView();
            views.WeekView(weekView => weekView.Selected(true));
            views.MonthView();
        })
        .DataSource(d => d
            .Model(m =>
            {
                m.Id(f => f.TaskID);
                m.ParentId(f => f.ParentID);
                m.Field(f => f.Expanded).DefaultValue(true);
            })
            .Read("ReadTasks", "Gantt")
            .Destroy("DestroyTask", "Gantt")
            .Update(update => update.Action("UpdateTask", "Gantt").Data("onUpdateCreate"))
            .Create(create => create.Action("CreateTask", "Gantt").Data("onUpdateCreate"))
        )
        .DependenciesDataSource(d => d
            .Model(m =>
            {
                m.Id(f => f.DependencyID);
                m.PredecessorId(f => f.PredecessorID);
                m.SuccessorId(f => f.SuccessorID);
            })
            .Read("ReadDependencies", "Gantt")
            .Create("CreateDependency", "Gantt")
            .Destroy("DestroyDependency", "Gantt")
        )
    )

    <script>
        // Send the dates for the newly creted/updated tasks as UTC strings
        function onUpdateCreate(e) {
            e.End = e.End.toISOString();
            e.Start = e.Start.toISOString();
        }
    </script>

Column Resizing

The columns in the TreeList section of the Gantt can be resized by clicking on the drag handles between the columns and dragging with the mouse. To enable this behavior, use the .Resizable(true) configuration option of the Gantt.

See Also

In this article