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

TreeListColumnBuilder

Methods

Filterable(System.Boolean)

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. Can be set to a JavaScript object which represents the filter menu configuration.

Parameters

enabled - System.Boolean

Enables or disables the filterable option.

EditorTemplateComponentName(System.String)

Parameters

templateName - System.String

HtmlAttributes(System.Collections.Generic.IDictionary)

The HTML attributes of the table cell (<td>) that is rendered for the column.

Parameters

value - System.Collections.Generic.IDictionary<String,Object>

The value for HtmlAttributes

HtmlAttributes(System.Object)

The HTML attributes of the table cell (<td>) that is rendered for the column.

Parameters

value - System.Object

The value for HtmlAttributes

Command(System.Action)

The configuration of the column commands. If set, the column will display a button for every command. Commands can be custom or built-inThe built-in commands are: edit - Switches the current table row to edit mode. Supports the inline and popup edit modes.; createChild- Adds a new child item to the current table row and switches to edit mode. or destroy - Removes the data item to which the current table row is bound.. Custom commands are supported by specifying the click option.

Parameters

configurator - System.Action<TreeListColumnCommandFactory>

The configurator for the command setting.

Draggable(System.Boolean)

If set to true a draghandle will be rendered and the user could reorder the rows by dragging the row via the drag handle.

Parameters

value - System.Boolean

The value for Draggable

Draggable()

If set to true a draghandle will be rendered and the user could reorder the rows by dragging the row via the drag handle.

Editable(System.String)

The JavaScript function that is executed when the cell or row is about to be opened for editing. The returned result will determine whether an editor for the column will be created.

Parameters

handler - System.String

The name of the JavaScript function that will be evaluated.

Editable(System.Func)

The JavaScript function that is executed when the cell or row is about to be opened for editing. The returned result will determine whether an editor for the column will be created.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Encoded(System.Boolean)

If set to true, the column value will be HTML-encoded before it is displayed. If set to false, the column value will be displayed as is. By default, the column value is HTML-encoded.

Parameters

value - System.Boolean

The value for Encoded

Expandable(System.Boolean)

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.

Parameters

value - System.Boolean

The value for Expandable

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(System.String)

The field to which the column is bound. The value of this field is displayed by the column during data binding.

Parameters

value - System.String

The value for Field

FooterTemplate(System.String)

The template which renders the footer table cell for the column.The following fields can be used in the template: average - The value of the average aggregate (if specified).; count - The value of the count aggregate (if specified).; max - The value of the max aggregate (if specified).; min - The value of the min aggregate (if specified). or sum - The value of the sum aggregate (if specified)..

Parameters

value - System.String

The value for FooterTemplate

FooterTemplateId(System.String)

The template which renders the footer table cell for the column.The following fields can be used in the template: average - The value of the average aggregate (if specified).; count - The value of the count aggregate (if specified).; max - The value of the max aggregate (if specified).; min - The value of the min aggregate (if specified). or sum - The value of the sum aggregate (if specified)..

Parameters

templateId - System.String

The ID of the template element for FooterTemplate

FooterTemplateView(Microsoft.AspNetCore.Html.IHtmlContent)

The template which renders the footer table cell for the column.The following fields can be used in the template: average - The value of the average aggregate (if specified).; count - The value of the count aggregate (if specified).; max - The value of the max aggregate (if specified).; min - The value of the min aggregate (if specified). or sum - The value of the sum aggregate (if specified)..

Parameters

templateView - Microsoft.AspNetCore.Html.IHtmlContent

The view that contains the template for FooterTemplate

FooterTemplateHandler(System.String)

The template which renders the footer table cell for the column.The following fields can be used in the template: average - The value of the average aggregate (if specified).; count - The value of the count aggregate (if specified).; max - The value of the max aggregate (if specified).; min - The value of the min aggregate (if specified). or sum - The value of the sum aggregate (if specified)..

Parameters

templateHandler - System.String

The handler that returs the template for FooterTemplate

FooterTemplate(Kendo.Mvc.UI.TemplateBuilder)

The template which renders the footer table cell for the column.The following fields can be used in the template: average - The value of the average aggregate (if specified).; count - The value of the count aggregate (if specified).; max - The value of the max aggregate (if specified).; min - The value of the min aggregate (if specified). or sum - The value of the sum aggregate (if specified)..

Parameters

template - TemplateBuilder<TModel>

A Template component that configures the footertemplate.

Format(System.String)

The format that is applied to the value before it is displayed. Takes the {0:format} form where format is a standard number format, custom number format, standard date format or a custom date format.

Parameters

value - System.String

The value for Format

HeaderAttributes(System.Collections.Generic.IDictionary)

The HTML attributes of the table header cell (<th>) that is rendered for the column.

Parameters

value - System.Collections.Generic.IDictionary<String,Object>

The value for HeaderAttributes

HeaderAttributes(System.Object)

The HTML attributes of the table header cell (<th>) that is rendered for the column.

Parameters

value - System.Object

The value for HeaderAttributes

HeaderTemplate(System.String)

The template which renders the column header content. By default, the value of the title column option is displayed in the column header cell.

Parameters

value - System.String

The value for HeaderTemplate

HeaderTemplateId(System.String)

The template which renders the column header content. By default, the value of the title column option is displayed in the column header cell.

Parameters

templateId - System.String

The ID of the template element for HeaderTemplate

HeaderTemplateView(Microsoft.AspNetCore.Html.IHtmlContent)

The template which renders the column header content. By default, the value of the title column option is displayed in the column header cell.

Parameters

templateView - Microsoft.AspNetCore.Html.IHtmlContent

The view that contains the template for HeaderTemplate

HeaderTemplateHandler(System.String)

The template which renders the column header content. By default, the value of the title column option is displayed in the column header cell.

Parameters

templateHandler - System.String

The handler that returs the template for HeaderTemplate

HeaderTemplate(Kendo.Mvc.UI.TemplateBuilder)

The template which renders the column header content. By default, the value of the title column option is displayed in the column header cell.

Parameters

template - TemplateBuilder<TModel>

A Template component that configures the headertemplate.

MinScreenWidth(System.Double)

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.

Parameters

value - System.Double

The value for MinScreenWidth

Selectable(System.Boolean)

If set to true the treelist will render a select column with checkboxes in each cell, thus enabling multi-row selection. The header checkbox allows users to select/deselect all the rows on the current page.

Parameters

value - System.Boolean

The value for Selectable

Selectable()

If set to true the treelist will render a select column with checkboxes in each cell, thus enabling multi-row selection. The header checkbox allows users to select/deselect all the rows on the current page.

Sortable(System.Action)

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.

Parameters

configurator - System.Action<TreeListColumnSortableSettingsBuilder>

The configurator for the sortable setting.

Sortable(System.Boolean)

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.

Parameters

enabled - System.Boolean

Enables or disables the sortable option.

Template(System.String)

The template which renders the column content. The TreeList 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.

Parameters

value - System.String

The value for Template

TemplateId(System.String)

The template which renders the column content. The TreeList 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.

Parameters

templateId - System.String

The ID of the template element for Template

TemplateView(Microsoft.AspNetCore.Html.IHtmlContent)

The template which renders the column content. The TreeList 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.

Parameters

templateView - Microsoft.AspNetCore.Html.IHtmlContent

The view that contains the template for Template

TemplateHandler(System.String)

The template which renders the column content. The TreeList 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.

Parameters

templateHandler - System.String

The handler that returs the template for Template

Template(Kendo.Mvc.UI.TemplateBuilder)

The template which renders the column content. The TreeList 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.

Parameters

template - TemplateBuilder<TModel>

A Template component that configures the template.

Title(System.String)

The text that is displayed in the column header cell. If not set, the TreeList uses field.

Parameters

value - System.String

The value for Title

Width(System.String)

The width of the column. Numeric values are treated as pixels.

Parameters

value - System.String

The value for Width

Hidden(System.Boolean)

If set to true, the TreeList will not display the column. By default, all columns are displayed.

Parameters

value - System.Boolean

The value for Hidden

Hidden()

If set to true, the TreeList will not display the column. By default, all columns are displayed.

IncludeChildren(System.Boolean)

If set to true, the TreeList will select all child rows upon parent row selection when checkbox selection is used.

Parameters

value - System.Boolean

The value for IncludeChildren

IncludeChildren()

If set to true, the TreeList will select all child rows upon parent row selection when checkbox selection is used.

If set to true, the TreeList will display the column in the column menu. By default, the column menu includes all data-bound columns, that is, the ones with a set field option.

Parameters

value - System.Boolean

The value for Menu

Locked(System.Boolean)

If set to true, the TreeList will display the column as locked (frozen).

Parameters

value - System.Boolean

The value for Locked

Locked()

If set to true, the TreeList will display the column as locked (frozen).

Lockable(System.Boolean)

If set to false, the column will remain in that side of the TreeList where its own locked configuration placed it.

Parameters

value - System.Boolean

The value for Lockable

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.

Field(System.Linq.Expressions.Expression)

The field to which the column is bound. The value of this field is displayed by the column during data binding. The field name should be a valid Javascript identifier and should contain no spaces, no special characters, and the first character should be a letter.

Parameters

expression - System.Linq.Expressions.Expression<Func>

The expression that specifies the field, based on the bound model.

Width(System.Int32)

The width of the column. Numeric values are treated as pixels. For more important information, please refer to Column Widths.

Parameters

value - System.Int32

The value that configures the width.

Filterable(System.Action)

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. Can be set to a JavaScript object which represents the filter menu configuration.

Parameters

configurator - System.Action<TreeListColumnFilterableSettingsBuilder>

The configurator for the filterable setting.

In this article
Not finding the help you need?