Kendo.Mvc.UI.Fluent.GanttBoundColumnBuilder
Defines the fluent interface for configuring bound columns
Methods
Editor(System.Func<System.Object,System.Object>)
Provides a way to specify a custom editing UI for the column. Use the container parameter to create the editing UI.
Parameters
value System.Func<System.Object,System.Object>
The value that configures the editor.
Editor(System.String)
Provides a way to specify a custom editing UI for the column. Use the container parameter to create the editing UI.
Parameters
value System.String
The value that configures the editor.
Sortable(System.Boolean)
Makes the column sortable or not. By default a column is not sortable.
Example (ASPX)
<%= Html.Kendo().Gantt(Model)
.Name("Gantt")
.Columns(columns => columns.Bound(o => o.OrderID).Sortable(true))
%>
Sortable(System.Action<Kendo.Mvc.UI.Fluent.GanttColumnSortableSettingsBuilder>)
Sortable configuration
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.GanttColumnSortableSettingsBuilder>
The action that configures the filterable.