$(() => {
$('#one-section').dxDropDownButton({
text: 'Download Trial',
icon: 'save',
dropDownOptions: {
width: 230,
},
onItemClick(e) {
DevExpress.ui.notify(`Download ${e.itemData}`, 'success', 600);
},
items: downloads,
});
$('#two-sections').dxDropDownButton({
items: profileSettings,
splitButton: true,
onButtonClick(e) {
DevExpress.ui.notify(`Go to ${e.component.option('text')}'s profile`, 'success', 600);
},
onItemClick(e) {
DevExpress.ui.notify(e.itemData.name, 'success', 600);
},
text: 'Sandra Johnson',
icon: '../../../../images/gym/coach-woman.png',
displayExpr: 'name',
keyExpr: 'id',
useSelectMode: false,
});
$('#template').dxToolbar({
items: [
{
location: 'before',
widget: 'dxDropDownButton',
options: {
displayExpr: 'name',
keyExpr: 'id',
selectedItemKey: 3,
width: 125,
stylingMode: 'text',
useSelectMode: true,
onSelectionChanged(e) {
$('#text').css('text-align', e.item.name.toLowerCase());
},
items: alignments,
},
},
{
location: 'before',
widget: 'dxDropDownButton',
options: {
items: colors,
icon: 'square',
stylingMode: 'text',
dropDownOptions: { width: 'auto' },
onInitialized(e) {
dropDownButton = e.component;
},
dropDownContentTemplate(data, $container) {
const $colorPicker = $('<div>')
.addClass('custom-color-picker')
.appendTo($container);
data.forEach((color) => {
const $button = $('<i>')
.addClass('color dx-icon dx-icon-square')
.on('dxclick', () => {
applyColor($('#text'), color);
applyColor(dropDownButton.$element().find('.dx-dropdownbutton-action .dx-icon').first(), color);
dropDownButton.close();
});
applyColor($button, color);
$colorPicker.append($button);
});
},
},
},
{
location: 'before',
widget: 'dxDropDownButton',
options: {
stylingMode: 'text',
displayExpr: 'text',
keyExpr: 'size',
useSelectMode: true,
items: fontSizes,
selectedItemKey: 14,
onSelectionChanged(e) {
$('#text').css('font-size', `${e.item.size}px`);
},
itemTemplate(itemData) {
return $('<div>')
.text(itemData.text)
.css('font-size', `${itemData.size}px`);
},
},
},
{
location: 'before',
widget: 'dxDropDownButton',
options: {
stylingMode: 'text',
icon: 'indent',
displayExpr: 'text',
keyExpr: 'lineHeight',
useSelectMode: true,
items: lineHeights,
selectedItemKey: 1.35,
onSelectionChanged(e) {
$('#text').css('line-height', e.item.lineHeight);
},
},
},
],
});
});
let dropDownButton;
function applyColor($element, color) {
if (color) {
$element.removeClass('dx-theme-text-color');
$element.css('color', color);
} else {
$element.addClass('dx-theme-text-color');
}
}
<!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/22.2.6/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/22.2.6/js/dx.all.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="data.js"></script>
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div class="dx-fieldset">
<div class="dx-fieldset-header">Single usage</div>
<div class="dx-field">
<div class="dx-field-label"> Custom static text </div>
<div class="dx-field-value">
<div id="one-section"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label"> Custom main button action </div>
<div class="dx-field-value">
<div id="two-sections"></div>
</div>
</div>
</div>
<div class="dx-fieldset">
<div class="dx-fieldset-header">Usage in a toolbar</div>
<div class="dx-field">
<div id="template"></div>
</div>
<div class="dx-field">
<p id="text"
>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p
>
</div>
</div>
</div>
</body>
</html>
.demo-container .dx-fieldset:first-child {
width: 500px;
}
.custom-color-picker {
width: 82px;
padding: 5px;
}
.dx-button-content img.dx-icon {
width: 24px;
height: 24px;
}
.color {
cursor: pointer;
font-size: 18px;
}
#text {
line-height: 1.35;
}
const colors = [null, '#980000', '#ff0000', '#ff9900', '#ffff00', '#00ff00', '#00ffff', '#4a86e8', '#0000ff', '#9900ff', '#ff00ff', '#ff3466'];
const profileSettings = [
{ id: 1, name: 'Profile', icon: 'user' },
{
id: 4, name: 'Messages', icon: 'email', badge: '5',
},
{ id: 2, name: 'Friends', icon: 'group' },
{ id: 3, name: 'Exit', icon: 'runner' },
];
const downloads = ['Download Trial For Visual Studio', 'Download Trial For All Platforms', 'Package Managers'];
const alignments = [
{ id: 1, name: 'Left', icon: 'alignleft' },
{ id: 4, name: 'Right', icon: 'alignright' },
{ id: 2, name: 'Center', icon: 'aligncenter' },
{ id: 3, name: 'Justify', icon: 'alignjustify' },
];
const fontSizes = [
{ size: 10, text: '10px' },
{ size: 12, text: '12px' },
{ size: 14, text: '14px' },
{ size: 16, text: '16px' },
{ size: 18, text: '18px' },
];
const lineHeights = [
{ lineHeight: 1, text: '1' },
{ lineHeight: 1.35, text: '1.35' },
{ lineHeight: 1.5, text: '1.5' },
{ lineHeight: 2, text: '2' },
];