Skip to main content
ID

TreeListBuilder<T>.HighlightChanges(Boolean) Method

Specifies whether to highlight rows and cells with edited data. repaintChangesOnly should be true. Mirrors the client-side highlightChanges option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public TreeListBuilder<T> HighlightChanges(
    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()
    .HighlightChanges(true)
)
See Also