Your search did not match any results.

Tabs

The Tabs component allows you to create a tabbed UI to navigate between pages or views. You can create tab items in the items array, or populate tab items from a dataSource.

Configure Overflow Behavior

The Tabs component stretches to fit its container if you do not specify the component's width. When the total tab width exceeds the component’s width, navigation buttons appear. A user can click these buttons to scroll through the tabs. Use the showNavButtons and scrollByContent properties to control this behavior.

Customize Tab Contents and Appearance

You can initialize a tab’s contents (text, icons and badges) with values from underlying data objects. This example demonstrates this technique. You can also specify an item template (itemTemplate) to customize tabs.

Process Tab Selection

Specify the selectedIndex property to select a specific tab. Use the onItemClick function to process clicks on tabs.

Backend API
$(() => { $('#longtabs > .tabs-container').dxTabs({ dataSource: longtabs, }); $('#scrolledtabs > .tabs-container').dxTabs({ dataSource: longtabs, width: 300, scrollByContent: true, showNavButtons: true, }); const tabsInstance = $('#tabs > .tabs-container').dxTabs({ dataSource: tabs, selectedIndex: 0, onItemClick(e) { selectBox.option('value', e.itemData.id); }, }).dxTabs('instance'); const selectBox = $('#selectbox').dxSelectBox({ value: 0, dataSource: tabs, inputAttr: { 'aria-label': 'Tab' }, displayExpr: 'text', valueExpr: 'id', onValueChanged(e) { tabsInstance.option('selectedIndex', e.value); $('.left-aligned').text(tabs[e.value].content); }, }).dxSelectBox('instance'); });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.1.6/css/dx.light.css" /> <script src="https://cdn3.devexpress.com/jslib/23.1.6/js/dx.all.js"></script> <script src="data.js"></script> <link rel="stylesheet" type="text/css" href="styles.css" /> <script src="index.js"></script> </head> <body class="dx-viewport"> <div class="demo-container"> <div id="longtabs"> <div class="caption">Tabs</div> <div class="tabs-container"></div> </div> <div id="scrolledtabs"> <div class="caption">Tabs with Overflow</div> <div class="tabs-container"></div> </div> <div id="tabs"> <div class="caption">API</div> <div class="tabs-container"></div> <div class="content dx-fieldset"> <div class="dx-field"> <div class="dx-field-label">Selected index:</div> <div class="dx-field-value"> <div id="selectbox"> </div> </div> </div> <div class="dx-field"> <div class="dx-field-label">Selected content:</div> <div class="dx-field-value-static left-aligned"> User tab content </div> </div> </div> </div> </div> </body> </html>
.content { text-align: justify; margin-top: 25px; } #longtabs { margin-top: 20px; } #scrolledtabs { margin-top: 20px; } #tabs { margin-top: 60px; } .caption { font-size: 16px; padding-bottom: 3px; padding-left: 10px; } .left-aligned { text-align: left; }
const tabs = [ { id: 0, text: 'user', icon: 'user', content: 'User tab content', }, { id: 1, text: 'comment', icon: 'comment', content: 'Comment tab content', }, { id: 2, text: 'find', icon: 'find', content: 'Find tab content', }, ]; const longtabs = [ { text: 'user' }, { text: 'analytics' }, { text: 'customers' }, { text: 'search' }, { text: 'favorites' }, { text: 'additional' }, { text: 'clients' }, { text: 'orders' }, { text: 'shipment' }, ];