DevExtreme v24.1 is now available.

Explore our newest features/capabilities and share your thoughts with us.

Your search did not match any results.

JavaScript/jQuery Drawer - Top or Bottom Position

JavaScript Drawer is a dismissible or permanently visible panel that usually contains navigation elements.

To open or close the JavaScript Drawer component in this demo, click the 'Hamburger' button. Each JavaScript Drawer visibility change can adjust the layout in the following ways (see openedStateMode):

  • "push"
    The JavaScript Drawer partially displaces the view.

  • "shrink"
    The view shrinks to accommodate the JavaScript Drawer.

  • "overlap"
    The JavaScript Drawer overlaps the view.

Backend API
$(() => { $('#content').html(text); const drawer = $('#drawer').dxDrawer({ height: 400, revealMode: 'expand', position: 'top', closeOnOutsideClick: true, template() { const $list = $('<div>').addClass('panel-list'); return $list.dxList({ dataSource: navigation, hoverStateEnabled: false, focusStateEnabled: false, activeStateEnabled: false, }); }, }).dxDrawer('instance'); $('#toolbar').dxToolbar({ items: [{ widget: 'dxButton', location: 'before', options: { icon: 'menu', stylingMode: 'text', onClick() { drawer.toggle(); }, }, }], }); $('#opened-state-mode').dxRadioGroup({ items: ['push', 'shrink', 'overlap'], layout: 'horizontal', value: 'shrink', onValueChanged(e) { drawer.option('openedStateMode', e.value); $('#reveal-mode-option').css('visibility', e.value !== 'push' ? 'visible' : 'hidden'); }, }); $('#position-mode').dxRadioGroup({ items: ['top', 'bottom'], layout: 'horizontal', value: 'top', onValueChanged(e) { drawer.option('position', e.value); }, }); $('#reveal-mode').dxRadioGroup({ items: ['slide', 'expand'], layout: 'horizontal', value: 'expand', onValueChanged(e) { drawer.option('revealMode', e.value); }, }); });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <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=5.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/24.1.6/css/dx.light.css" /> <script src="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 class="flex-container"> <div id="toolbar"></div> <div id="drawer"> <div id="content"> </div> </div> <div class="options"> <div class="caption">Options</div> <div class="option"> <label>Opened state mode</label> <div id="opened-state-mode"></div> </div> <div class="option"> <label>Position</label> <div id="position-mode"></div> </div> <div id="reveal-mode-option" class="option"> <label>Reveal mode</label> <div id="reveal-mode"></div> </div> </div> </div> </div> </body> </html>
.demo-container { overflow: visible; } .flex-container { display: flex; flex-direction: column; } .dx-drawer-content { display: flex; } #toolbar { background-color: var(--dx-component-color-bg); box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.08); padding: 5px 10px; z-index: 10000; } .dx-drawer-shrink #content { overflow: hidden; transition: all 0.4s ease-out; column-width: 900px; } .dx-drawer-shrink.dx-drawer-opened #content { margin-right: -10px; } .panel-list { height: 200px; padding-top: 12px; background-color: var(--dx-color-main-bg); } .panel-list .dx-list-item { text-align: center; } .options { padding: 20px; background-color: rgba(191, 191, 191, 0.15); } .caption { font-size: 18px; font-weight: 500; } .option { margin-top: 10px; display: inline-block; margin-right: 50px; } label { font-weight: bold; } #content { height: 100%; padding: 10px 20px; background-color: var(--dx-component-color-bg); } #content h2 { font-size: 26px; }
const navigation = [ { id: 1, text: 'Products' }, { id: 2, text: 'Sales' }, { id: 3, text: 'Customers' }, { id: 4, text: 'Employees' }, { id: 5, text: 'Reports' }, ]; const text = ` <h2> <b>Drawer Demo</b> </h2> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Penatibus et magnis dis parturient. Eget dolor morbi non arcu risus. Tristique magna sit amet purus gravida quis blandit. Auctor urna nunc id cursus metus aliquam eleifend mi in. Tellus orci ac auctor augue mauris augue neque gravida. Nullam vehicula ipsum a arcu. Nullam ac tortor vitae purus faucibus ornare suspendisse sed nisi. Cursus in hac habitasse platea dictumst. Egestas dui id ornare arcu. Dictumst vestibulum rhoncus est pellentesque elit ullamcorper dignissim.</p><p>Mauris rhoncus aenean vel elit scelerisque mauris pellentesque pulvinar. Neque volutpat ac tincidunt vitae semper quis lectus. Sed sed risus pretium quam vulputate dignissim suspendisse in. Urna nec tincidunt praesent semper feugiat nibh sed pulvinar. Ultricies lacus sed turpis tincidunt id aliquet risus feugiat. Amet cursus sit amet dictum sit amet justo donec enim. Vestibulum rhoncus est pellentesque elit ullamcorper. Id aliquet risus feugiat in ante metus dictum at. </p>`;

Use the radio buttons at the bottom of this demo module to try different layout modes. You can also change the JavaScript Drawer's position and revealMode properties.

Note this demo's markup. The JavaScript Drawer definition encloses the view content (the formatted text). The JavaScript Drawer's own content (navigation links) is set by the template property. Finally, the toolbar markup is separate from other elements.

To get started with the DevExtreme JavaScript Drawer component, refer to the following step-by-step tutorial: Getting Started with Navigation JavaScript Drawer.