<template>
<div>
<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">
<dx-drop-down-button
:items="data.downloads"
:drop-down-options="{ width: 230 }"
text="Download Trial"
icon="save"
@item-click="onItemClick"
/>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">
Custom main button action
</div>
<div class="dx-field-value">
<dx-drop-down-button
:split-button="true"
:use-select-mode="false"
:items="data.profileSettings"
text="Sandra Johnson"
icon="../../../../images/gym/coach-woman.png"
display-expr="name"
key-expr="id"
@button-click="onButtonClick"
@item-click="onItemClick"
/>
</div>
</div>
</div>
<div class="dx-fieldset">
<div class="dx-fieldset-header">Usage in a toolbar</div>
<div class="dx-field">
<dx-toolbar :items="toolbarItems">
<template #fontItem="{ data }">
<div :style="{ fontSize: data.size + 'px'}">
{{ data.text }}
</div>
</template>
<template #colorpicker="{ data }">
<div class="custom-color-picker">
<i
v-for="(itemColor, i) in data"
:key="i"
:class="itemColor ? 'color dx-icon dx-icon-square' : 'color dx-icon dx-icon-square dx-theme-text-color'"
:style="{ color: itemColor }"
@click="onColorClick(itemColor)"
/>
</div>
</template>
</dx-toolbar>
</div>
<div class="dx-field">
<p
id="text"
:style="{ textAlign: alignment, fontSize: fontSize, color: color, lineHeight: lineHeight }"
>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>
</template>
<script>
import { DxDropDownButton, DxToolbar } from 'devextreme-vue';
import service from './data.js';
import notify from 'devextreme/ui/notify';
import 'whatwg-fetch';
export default {
components: {
DxDropDownButton,
DxToolbar
},
data() {
const data = service.getData();
return {
data,
alignment: 'left',
color: null,
fontSize: '14px',
lineHeight: 1.35,
toolbarItems: [
{
location: 'before',
widget: 'dxDropDownButton',
options: {
displayExpr: 'name',
keyExpr: 'id',
selectedItemKey: 1,
width: 120,
stylingMode: 'text',
useSelectMode: true,
onSelectionChanged: (e) => {
this.alignment = e.item.name.toLowerCase();
},
items: data.alignments
}
},
{
location: 'before',
widget: 'dxDropDownButton',
options: {
items: data.colors,
onInitialized: ({ component }) => {
this.colorPicker = component;
},
icon: 'square',
stylingMode: 'text',
dropDownContentTemplate: 'colorpicker'
}
},
{
location: 'before',
widget: 'dxDropDownButton',
options: {
stylingMode: 'text',
displayExpr: 'text',
keyExpr: 'size',
useSelectMode: true,
items: data.fontSizes,
selectedItemKey: 14,
onSelectionChanged:(e) => {
this.fontSize = `${e.item.size }px`;
},
itemTemplate: 'fontItem'
}
},
{
location: 'before',
widget: 'dxDropDownButton',
options: {
stylingMode: 'text',
icon: 'indent',
displayExpr: 'text',
keyExpr: 'lineHeight',
useSelectMode: true,
items: data.lineHeights,
selectedItemKey: 1.35,
onSelectionChanged: (e) => {
this.lineHeight = e.item.lineHeight;
}
}
}
]
};
},
methods: {
onButtonClick(e) {
notify(`Go to ${ e.component.option('text') }'s profile`, 'success', 600);
},
onItemClick(e) {
notify(e.itemData.name || e.itemData, 'success', 600);
},
onColorClick(color) {
this.color = color;
this.colorPicker.element().getElementsByClassName('dx-icon-square')[0].style.color = color;
this.colorPicker.close();
}
}
};
</script>
<style scoped>
.demo-container .dx-fieldset:first-child {
width: 500px;
}
.dx-popup-content > .dx-template-wrapper.custom-color-picker {
width: 82px;
padding: 5px;
}
.dx-button-content img.dx-icon {
width: 24px;
height: 24px;
}
.color {
cursor: pointer;
font-size: 18px;
}
</style>
import Vue from 'vue';
import App from './App.vue';
new Vue({
el: '#app',
components: { App },
template: '<App/>'
});
<!DOCTYPE html>
<html>
<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" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/19.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/19.2.4/css/dx.light.css" />
<script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
<script src="https://unpkg.com/systemjs@0.21.3/dist/system.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript">
System.import('./index.js');
</script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="app">
</div>
</div>
</body>
</html>
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' }
];
export default {
getData() {
return { colors, profileSettings, downloads, alignments, fontSizes, lineHeights };
}
};
System.config({
transpiler: 'plugin-babel',
paths: {
'npm:': 'https://unpkg.com/'
},
map: {
vue: 'npm:vue@2.6.3/dist/vue.esm.browser.js',
'vue-loader': 'npm:dx-systemjs-vue-browser@latest/index.js',
'devextreme': 'npm:devextreme@19.2',
'devextreme-vue': 'npm:devextreme-vue@19.2',
jszip: 'npm:jszip@3.1.3/dist/jszip.min.js',
'quill': 'npm:quill@1.3.7/dist/quill.js',
'devexpress-diagram': 'npm:devexpress-diagram',
'devexpress-gantt': 'npm:devexpress-gantt',
'whatwg-fetch': 'npm:whatwg-fetch@2.0.4/fetch.js',
'plugin-babel': 'npm:systemjs-plugin-babel@0/plugin-babel.js',
'systemjs-babel-build': 'npm:systemjs-plugin-babel@0/systemjs-babel-browser.js'
},
meta: {
'*.vue': { loader: 'vue-loader' }
},
packages: {
'devextreme-vue': {
main: 'index.js'
},
'devextreme': {
defaultExtension: 'js'
}
},
babelOptions: {
sourceMaps: false,
stage0: true
}
});