<template>
<div>
<DxScheduler
time-zone="America/Los_Angeles"
:data-source="dataSource"
:current-date="currentDate"
:views="views"
:height="600"
:start-day-hour="9"
:first-day-of-week="1"
current-view="workWeek"
>
<DxResource
:data-source="owners"
:use-color-as-default="radioGroupValue === 'Owner'"
field-expr="ownerId"
label="Owner"
/>
<DxResource
:data-source="rooms"
:use-color-as-default="radioGroupValue === 'Room'"
field-expr="roomId"
label="Room"
/>
<DxResource
:data-source="priorities"
:use-color-as-default="radioGroupValue === 'Priority'"
field-expr="priorityId"
label="Priority"
/>
</DxScheduler>
<div class="options">
<div class="caption">Use colors of:</div>
<div class="option">
<DxRadioGroup
:items="resources"
:value="radioGroupValue"
:on-value-changed="onRadioGroupValueChanged"
layout="horizontal"
/>
</div>
</div>
</div>
</template>
<script>
import DxScheduler, { DxResource } from 'devextreme-vue/scheduler';
import DxRadioGroup from 'devextreme-vue/radio-group';
import { resourcesList, data, priorities, owners, rooms } from './data.js';
export default {
components: {
DxScheduler,
DxResource,
DxRadioGroup
},
data() {
return {
views: ['workWeek'],
currentDate: new Date(2021, 4, 25),
radioGroupValue: 'Owner',
dataSource: data,
resources: resourcesList,
owners: owners,
priorities: priorities,
rooms: rooms,
};
},
methods: {
onRadioGroupValueChanged: function(e) {
this.radioGroupValue = e.value;
}
}
};
</script>
<style scoped>
.options {
padding: 20px;
background-color: rgba(191, 191, 191, 0.15);
margin-top: 20px;
}
.caption {
font-size: 18px;
font-weight: 500;
}
.option {
margin-top: 10px;
display: inline-block;
}
</style>
import { createApp } from 'vue';
import App from './App.vue';
createApp(App).mount('#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/20.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.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>
export const resourcesList = ['Owner', 'Room', 'Priority'];
export const data = [
{
text: 'Website Re-Design Plan',
ownerId: 4, roomId: 1, priorityId: 2,
startDate: new Date('2021-05-24T16:30:00.000Z'),
endDate: new Date('2021-05-24T18:30:00.000Z')
}, {
text: 'Book Flights to San Fran for Sales Trip',
ownerId: 2, roomId: 2, priorityId: 1,
startDate: new Date('2021-05-24T19:00:00.000Z'),
endDate: new Date('2021-05-24T20:00:00.000Z'),
allDay: true
}, {
text: 'Install New Router in Dev Room',
ownerId: 1, roomId: 1, priorityId: 2,
startDate: new Date('2021-05-24T21:30:00.000Z'),
endDate: new Date('2021-05-24T22:30:00.000Z')
}, {
text: 'Approve Personal Computer Upgrade Plan',
ownerId: 3, roomId: 2, priorityId: 2,
startDate: new Date('2021-05-25T17:00:00.000Z'),
endDate: new Date('2021-05-25T18:00:00.000Z')
}, {
text: 'Final Budget Review',
ownerId: 1, roomId: 1, priorityId: 1,
startDate: new Date('2021-05-25T19:00:00.000Z'),
endDate: new Date('2021-05-25T20:35:00.000Z')
}, {
text: 'New Brochures',
ownerId: 4, roomId: 3, priorityId: 2,
startDate: new Date('2021-05-25T21:30:00.000Z'),
endDate: new Date('2021-05-25T22:45:00.000Z')
}, {
text: 'Install New Database',
ownerId: 2, roomId: 3, priorityId: 1,
startDate: new Date('2021-05-26T16:45:00.000Z'),
endDate: new Date('2021-05-26T18:15:00.000Z')
}, {
text: 'Approve New Online Marketing Strategy',
ownerId: 4, roomId: 2, priorityId: 1,
startDate: new Date('2021-05-26T19:00:00.000Z'),
endDate: new Date('2021-05-26T21:00:00.000Z')
}, {
text: 'Upgrade Personal Computers',
ownerId: 2, roomId: 2, priorityId: 2,
startDate: new Date('2021-05-26T22:15:00.000Z'),
endDate: new Date('2021-05-26T23:30:00.000Z')
}, {
text: 'Customer Workshop',
ownerId: 3, roomId: 3, priorityId: 1,
startDate: new Date('2021-05-27T18:00:00.000Z'),
endDate: new Date('2021-05-27T19:00:00.000Z'),
allDay: true
}, {
text: 'Prepare 2021 Marketing Plan',
ownerId: 1, roomId: 1, priorityId: 2,
startDate: new Date('2021-05-27T18:00:00.000Z'),
endDate: new Date('2021-05-27T20:30:00.000Z')
}, {
text: 'Brochure Design Review',
ownerId: 4, roomId: 1, priorityId: 1,
startDate: new Date('2021-05-27T21:00:00.000Z'),
endDate: new Date('2021-05-27T22:30:00.000Z')
}, {
text: 'Create Icons for Website',
ownerId: 3, roomId: 3, priorityId: 1,
startDate: new Date('2021-05-28T17:00:00.000Z'),
endDate: new Date('2021-05-28T18:30:00.000Z')
}, {
text: 'Upgrade Server Hardware',
ownerId: 4, roomId: 2, priorityId: 2,
startDate: new Date('2021-05-28T21:30:00.000Z'),
endDate: new Date('2021-05-28T23:00:00.000Z')
}, {
text: 'Submit New Website Design',
ownerId: 1, roomId: 1, priorityId: 2,
startDate: new Date('2021-05-28T23:30:00.000Z'),
endDate: new Date('2021-05-29T01:00:00.000Z')
}, {
text: 'Launch New Website',
ownerId: 2, roomId: 3, priorityId: 1,
startDate: new Date('2021-05-28T19:20:00.000Z'),
endDate: new Date('2021-05-28T21:00:00.000Z')
}
];
export const owners = [
{
text: 'Samantha Bright',
id: 1,
color: '#727bd2'
}, {
text: 'John Heart',
id: 2,
color: '#32c9ed'
}, {
text: 'Todd Hoffman',
id: 3,
color: '#2a7ee4'
}, {
text: 'Sandra Johnson',
id: 4,
color: '#7b49d3'
}
];
export const rooms = [
{
text: 'Room 1',
id: 1,
color: '#00af2c'
}, {
text: 'Room 2',
id: 2,
color: '#56ca85'
}, {
text: 'Room 3',
id: 3,
color: '#8ecd3c'
}
];
export const priorities = [
{
text: 'High priority',
id: 1,
color: '#cc5c53'
}, {
text: 'Low priority',
id: 2,
color: '#ff9747'
}
];
System.config({
transpiler: 'plugin-babel',
meta: {
'*.vue': {
loader: 'vue-loader'
},
},
paths: {
'npm:': 'https://unpkg.com/'
},
map: {
'vue': 'npm:vue@3.0.0/dist/vue.esm-browser.js',
'vue-loader': 'npm:dx-systemjs-vue-browser@1.0.15/index.js',
'mitt': 'npm:mitt/dist/mitt.umd.js',
'rrule': 'npm:rrule@2.6.6/dist/es5/rrule.js',
'luxon': 'npm:luxon@1.25.0/build/global/luxon.min.js',
'es6-object-assign': 'npm:es6-object-assign@1.1.0',
'devextreme': 'npm:devextreme@20.2.4',
'devextreme-vue': 'npm:devextreme-vue@20.2.4',
'jszip': 'npm:jszip@3.5.0/dist/jszip.min.js',
'devextreme-quill': 'npm:devextreme-quill@0.9.7/dist/dx-quill.min.js',
'devexpress-diagram': 'npm:devexpress-diagram@2.0.5/dist/dx-diagram.js',
'devexpress-gantt': 'npm:devexpress-gantt@2.0.8/dist/dx-gantt.js',
'preact': 'npm:preact@10.5.7/dist/preact.js',
'preact/hooks': 'npm:preact@10.5.7/hooks/dist/hooks.js',
'plugin-babel': 'npm:systemjs-plugin-babel@0.0.25/plugin-babel.js',
'systemjs-babel-build': 'npm:systemjs-plugin-babel@0.0.25/systemjs-babel-browser.js'
},
packages: {
'devextreme-vue': {
main: 'index.js'
},
'devextreme': {
defaultExtension: 'js'
},
'devextreme/events/utils': {
main: 'index'
},
'devextreme/events': {
main: 'index'
},
'es6-object-assign': {
main: './index.js',
defaultExtension: 'js'
}
},
babelOptions: {
sourceMaps: false,
stage0: true
}
});