JavaScript/jQuery MultiView - Loop the Views

The MultiView UI component 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 property.

JavaScript
HTML
  • $(function() {
  • $('#multiViewContainer').dxMultiView({
  • dataSource: [
  • { text: 'Personal Data' },
  • { text: 'Contacts' }
  • ],
  • loop: true
  • });
  • });
  • <div id="multiViewContainer"></div>
See Also