Kendo.Mvc.UI.Fluent.OrgChartBuilder
Defines the fluent API for configuring the Kendo OrgChart for ASP.NET MVC.
Methods
Editable(System.Boolean)
If set to false, the user will not be able to edit the data to which the OrgChart is bound. By default, editing is enabled.The editable option can also be set to a JavaScript object (which represents the editing configuration).
Parameters
enabled System.Boolean
Enables or disables the editable option.
Editable(System.Action<Kendo.Mvc.UI.Fluent.OrgChartEditableSettingsBuilder<T>>)
If set to false, the user will not be able to edit the data to which the OrgChart is bound. By default, editing is enabled.The editable option can also be set to a JavaScript object (which represents the editing configuration).
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.OrgChartEditableSettingsBuilder>
The action that configures the editable.
GroupField(System.String)
Specifies the field the nodes should be grouped by. If any value is passed, the OrgChart uses its grouping rendering mode.
Parameters
value System.String
The value that configures the groupfield.
GroupHeaderTemplate(System.String)
Provides an option to customize the default template for the group label (using the field value and name by default).
Parameters
value System.String
The value that configures the groupheadertemplate.
GroupHeaderTemplateId(System.String)
Provides an option to customize the default template for the group label (using the field value and name by default).
Parameters
value System.String
The value that configures the groupheadertemplate.
Messages(System.Action<Kendo.Mvc.UI.Fluent.OrgChartMessagesSettingsBuilder<T>>)
Provides configuration options for the messages present in the OrgChart widget.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.OrgChartMessagesSettingsBuilder>
The action that configures the messages.
Template(System.String)
Defines a node card template.
Parameters
value System.String
The value that configures the template.
TemplateId(System.String)
Defines a node card template.
Parameters
value System.String
The value that configures the template.
DataSource(System.Action<Kendo.Mvc.UI.Fluent.OrgChartAjaxDataSourceBuilder<T>>)
The data source of the widget which is used to render the OrgChart items. Can be a JavaScript object which represents a valid kendo.data.OrgChartDataSource configuration, a JavaScript array, or an existing kendo.data.OrgChartDataSource instance. If the dataSource option is set to a JavaScript object or an array, the widget will initialize a new kendo.data.OrgChartDataSource instance and will use that value as the DataSource configuration. or If the dataSource option is an existing kendo.data.OrgChartDataSource instance, the widget will use that instance and will not initialize a new one..
Parameters
value System.Action<Kendo.Mvc.UI.Fluent.OrgChartAjaxDataSourceBuilder>
The value that configures the datasource.
Events(System.Action<Kendo.Mvc.UI.Fluent.OrgChartEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.OrgChartEventBuilder>
The client events action.
Example (ASPX)
<%= Html.Kendo().OrgChart()
.Name("OrgChart")
.Events(events => events
.Cancel("onCancel")
)
%>