Hi,
I have a simple list of tasks, and none of them are summary tasks. The titles of the tasks are displayed correctly in the bars in the calendar, but the title that appears in the task list is "undefined". I have attached a screenshot. My Razor view is enclosed below.
Is there a way to display the task title in the task list when there isn't a parent?
Derek
@(Html.Kendo().Gantt<
TaskViewModel
, DependencyViewModel>(this.Model.Tasks)
.Name("gantt")
.Columns(columns =>
{
columns.Bound(c => c.Id).Title("ID").Width(50);
columns.Bound(c => c.Title).Sortable(true);
})
.Editable(false)
.Views(views =>
{
views.WeekView(weekView => weekView.Selected(true));
})
.Height(700)
.DataSource(d => d
.Model(m =>
{
m.Id(f => f.Id);
m.ParentId(f => f.ParentId);
})
)
)