TreeListScrollingBuilder.UseNative(Mode) Method
In This Article
Specifies whether the widget should use native or simulated scrolling. Mirrors the client-side useNative option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public TreeListScrollingBuilder UseNative(
Mode value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Mode | The option value. |
#Returns
Type | Description |
---|---|
Tree |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().TreeList()
.Scrolling(scrolling => scrolling
.UseNative(Mode.Auto)
)
)
See Also