Loop the Views
The MultiView widget can display views in a loop. The loop mode enables an end user to swipe through the last view to the first and vice versa. To enable this mode, assign true to the loop option.
jQuery
JavaScript
$(function() { $("#multiViewContainer").dxMultiView({ dataSource: multiViewData, loop: true }); });
Angular
HTML
TypeScript
<dx-multi-view [dataSource]="multiViewItems" [loop]="true"> </dx-multi-view>
import { DxMultiViewModule } from "devextreme-angular"; // ... export class AppComponent { multiViewItems = [ ... ]; } @NgModule({ imports: [ // ... DxMultiViewModule ], // ... })
See Also
Feel free to share demo-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you!
We appreciate your feedback.
We appreciate your feedback.