Back to Devexpress

TreeListBuilder<T>.Columns(Action<CollectionFactory<TreeListColumnBuilder<T>>>) Method

aspnetcore-devextreme-dot-aspnet-dot-mvc-dot-builders-dot-treelistbuilder-1-dot-columns-x28-system-dot-action-devextreme-dot-aspnet-dot-mvc-dot-factories-dot-collectionfactory-devextreme-dot-aspnet-dot-mvc-dot-builders-dot-treelistcolumnbuilder-0-x29.md

latest2.2 KB
Original Source

TreeListBuilder<T>.Columns(Action<CollectionFactory<TreeListColumnBuilder<T>>>) Method

Provides access to the client-side columns option that represents a TreeList column collection.

Namespace : DevExtreme.AspNet.Mvc.Builders

Assembly : DevExtreme.AspNet.Core.dll

Declaration

csharp
public TreeListBuilder<T> Columns(
    Action<CollectionFactory<TreeListColumnBuilder<T>>> configurator
)

Parameters

NameTypeDescription
configuratorAction<CollectionFactory<TreeListColumnBuilder<T>>>

A function that allows you to add items to the collection.

|

Returns

TypeDescription
TreeListBuilder<T>

A reference to this instance after the method is called.

|

Remarks

To configure a TreeList column collection, use a multiline lambda expression. In this case, a lambda parameter performs the role of a collection factory, and its Add() method adds a new item to the collection. The Add() method returns TreeListColumnBuilder<T> whose methods you can use to configure an item.

cshtml
@(Html.DevExtreme().TreeList()
    .Columns(columns => {
        columns.Add(); // call methods to configure a TreeList column
        columns.Add();
    })
)

Refer to Nested Options and Collections for more information.

See Also

TreeListBuilder<T> Class

TreeListBuilder<T> Members

DevExtreme.AspNet.Mvc.Builders Namespace