Skip to main content
ID

TreeListBuilder<T>.ColumnHidingEnabled(Boolean) Method

Specifies whether the UI component should hide columns to adapt to the screen or container size. Ignored if allowColumnResizing is true and columnResizingMode is 'widget'. Mirrors the client-side columnHidingEnabled option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public TreeListBuilder<T> ColumnHidingEnabled(
    bool value
)

Parameters

Name Type Description
value Boolean

The option value.

Returns

Type Description
TreeListBuilder<T>

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().TreeList()
    .ColumnHidingEnabled(true)
)
See Also