TabPanelBuilder.Loop(JS) Method
In This Article
A Boolean value specifying whether or not to scroll back to the first item after the last item is swiped. Mirrors the client-side loop option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public TabPanelBuilder Loop(
JS value
)
#Parameters
Name | Type | Description |
---|---|---|
value | JS | A Java |
#Returns
Type | Description |
---|---|
Tab |
A reference to this instance after the method is called. |
#Remarks
Use the new JS() expression to set the option’s value.
<script>
var myValue = ...;
</script>
@(Html.DevExtreme().TabPanel()
.Loop(new JS("myValue"))
)
See Also