DevExtreme Accessibility Compliance
DevExtreme component libraries meet a variety of WCAG and Section 508 compliance standards. To assess this demo's accessibility level, click the Run AXE® Validation button to launch the AXE® web accessibility evaluation tool.
All trademarks or registered trademarks are property of their respective owners. AXE® Terms of Use
The overall accessibility level of your application depends on the FilterBuilder features used.
Backend API
<template>
<div>
<div class="filter-container">
<DxFilterBuilder
:fields="fields"
v-model:value="filterValue"
/>
<DxButton
text="Apply Filter"
type="default"
@click="buttonClick()"
/>
<div class="dx-clearfix"/>
</div>
<DxDataGrid
:data-source="products"
:filter-value="gridFilterValue"
:show-borders="true"
:columns="columns"
:height="300"
/>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import DxFilterBuilder from 'devextreme-vue/filter-builder';
import DxButton from 'devextreme-vue/button';
import DxDataGrid from 'devextreme-vue/data-grid';
import { filter, fields, columns, products } from './data.ts';
const filterValue = ref(filter);
const gridFilterValue = ref(filter);
function buttonClick() {
gridFilterValue.value = filterValue.value;
}
</script>
<style scoped>
.filter-container {
background-color: transparent;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
border-radius: 6px;
padding: 5px;
width: 500px;
margin: 24px;
}
.dx-filterbuilder {
background-color: transparent;
padding: 10px;
}
.dx-button {
margin: 10px;
float: right;
}
.dx-filterbuilder .dx-numberbox {
width: 80px;
}
</style>
window.exports = window.exports || {};
window.config = {
transpiler: 'plugin-babel',
meta: {
'*.vue': {
loader: 'vue-loader',
},
'*.ts': {
loader: 'demo-ts-loader',
},
'*.svg': {
loader: 'svg-loader',
},
'devextreme/time_zone_utils.js': {
'esModule': true,
},
'devextreme/localization.js': {
'esModule': true,
},
'devextreme/viz/palette.js': {
'esModule': true,
},
'openai': {
'esModule': true,
},
},
paths: {
'project:': '../../../../',
'npm:': 'https://cdn.jsdelivr.net/npm/',
'bundles:': '../../../../bundles/',
'externals:': '../../../../bundles/externals/',
},
map: {
'vue': 'npm:vue@3.4.27/dist/vue.esm-browser.js',
'@vue/shared': 'npm:@vue/shared@3.4.27/dist/shared.cjs.prod.js',
'vue-loader': 'npm:dx-systemjs-vue-browser@1.1.2/index.js',
'demo-ts-loader': 'project:utils/demo-ts-loader.js',
'jszip': 'npm:jszip@3.10.1/dist/jszip.min.js',
'svg-loader': 'project:utils/svg-loader.js',
'mitt': 'npm:mitt/dist/mitt.umd.js',
'rrule': 'npm:rrule@2.6.4/dist/es5/rrule.js',
'luxon': 'npm:luxon@3.4.4/build/global/luxon.min.js',
'es6-object-assign': 'npm:es6-object-assign',
'devextreme': 'npm:devextreme@link:../../packages/devextreme/artifacts/npm/devextreme/cjs',
'devextreme-vue': 'npm:devextreme-vue@link:../../packages/devextreme-vue/npm/cjs',
'devextreme-quill': 'npm:devextreme-quill@1.7.6/dist/dx-quill.min.js',
'devexpress-diagram': 'npm:devexpress-diagram@2.2.24/dist/dx-diagram.js',
'devexpress-gantt': 'npm:devexpress-gantt@4.1.64/dist/dx-gantt.js',
'inferno': 'npm:inferno@8.2.3/dist/inferno.min.js',
'inferno-compat': 'npm:inferno-compat/dist/inferno-compat.min.js',
'inferno-create-element': 'npm:inferno-create-element@8.2.3/dist/inferno-create-element.min.js',
'inferno-dom': 'npm:inferno-dom/dist/inferno-dom.min.js',
'inferno-hydrate': 'npm:inferno-hydrate/dist/inferno-hydrate.min.js',
'inferno-clone-vnode': 'npm:inferno-clone-vnode/dist/inferno-clone-vnode.min.js',
'inferno-create-class': 'npm:inferno-create-class/dist/inferno-create-class.min.js',
'inferno-extras': 'npm:inferno-extras/dist/inferno-extras.min.js',
'@preact/signals-core': 'npm:@preact/signals-core@1.8.0/dist/signals-core.min.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',
// Prettier
'prettier/standalone': 'npm:prettier@2.8.8/standalone.js',
'prettier/parser-html': 'npm:prettier@2.8.8/parser-html.js',
},
packages: {
'devextreme-vue': {
main: 'index.js',
},
'devextreme-vue/common': {
main: 'index.js',
},
'devextreme': {
defaultExtension: 'js',
},
'devextreme/events/utils': {
main: 'index',
},
'devextreme/common/core/events/utils': {
main: 'index',
},
'devextreme/events': {
main: 'index',
},
'es6-object-assign': {
main: './index.js',
defaultExtension: 'js',
},
},
packageConfigPaths: [
'npm:@devextreme/*/package.json',
],
babelOptions: {
sourceMaps: false,
stage0: true,
},
};
System.config(window.config);
// eslint-disable-next-line
const useTgzInCSB = ['openai'];
import { type DxDataGridTypes } from "devextreme-vue/data-grid";
import { type DxFilterBuilderTypes } from 'devextreme-vue/filter-builder';
interface Product {
Product_ID: number;
Product_Name: string;
Product_Cost: string;
Product_Sale_Price: string;
Product_Retail_Price: string;
Product_Current_Inventory: number;
}
export const filter = [
['Product_Current_Inventory', '<>', 0],
'or',
[
['Product_Name', 'contains', 'HD'],
'and',
['Product_Cost', '<', 200],
],
];
export const fields: (DxFilterBuilderTypes.Field)[] = [
{
caption: 'ID',
dataField: 'Product_ID',
dataType: 'number',
}, {
dataField: 'Product_Name',
dataType: 'string',
}, {
caption: 'Cost',
dataField: 'Product_Cost',
dataType: 'number',
format: 'currency',
}, {
dataField: 'Product_Sale_Price',
caption: 'Sale Price',
dataType: 'number',
format: 'currency',
}, {
dataField: 'Product_Retail_Price',
caption: 'Retail Price',
dataType: 'number',
format: 'currency',
}, {
dataField: 'Product_Current_Inventory',
dataType: 'number',
caption: 'Inventory',
},
];
export const columns: (DxDataGridTypes.Column)[] = [
{
caption: 'ID',
dataField: 'Product_ID',
dataType: 'number',
width: 50,
}, {
dataField: 'Product_Name',
dataType: 'string',
}, {
caption: 'Cost',
dataField: 'Product_Cost',
dataType: 'number',
format: 'currency',
}, {
dataField: 'Product_Sale_Price',
caption: 'Sale Price',
dataType: 'number',
format: 'currency',
}, {
dataField: 'Product_Retail_Price',
caption: 'Retail Price',
dataType: 'number',
format: 'currency',
}, {
dataField: 'Product_Current_Inventory',
dataType: 'number',
caption: 'Inventory',
},
];
export const products: Product[] = [
{
Product_ID: 1,
Product_Name: "HD Video Player",
Product_Cost: "110.0000",
Product_Sale_Price: "220.0000",
Product_Retail_Price: "330.0000",
Product_Current_Inventory: 225,
},
{
Product_ID: 2,
Product_Name: "SuperHD Video Player",
Product_Cost: "175.0000",
Product_Sale_Price: "275.0000",
Product_Retail_Price: "400.0000",
Product_Current_Inventory: 150,
},
{
Product_ID: 3,
Product_Name: "SuperPlasma 50",
Product_Cost: "1100.0000",
Product_Sale_Price: "1800.0000",
Product_Retail_Price: "2400.0000",
Product_Current_Inventory: 0,
},
{
Product_ID: 4,
Product_Name: "SuperLED 50",
Product_Cost: "775.0000",
Product_Sale_Price: "1100.0000",
Product_Retail_Price: "1600.0000",
Product_Current_Inventory: 77,
},
{
Product_ID: 5,
Product_Name: "SuperLED 42",
Product_Cost: "675.0000",
Product_Sale_Price: "1050.0000",
Product_Retail_Price: "1450.0000",
Product_Current_Inventory: 445,
},
{
Product_ID: 6,
Product_Name: "SuperLCD 55",
Product_Cost: "745.0000",
Product_Sale_Price: "1045.0000",
Product_Retail_Price: "1350.0000",
Product_Current_Inventory: 345,
},
{
Product_ID: 7,
Product_Name: "SuperLCD 42",
Product_Cost: "710.0000",
Product_Sale_Price: "999.0000",
Product_Retail_Price: "1200.0000",
Product_Current_Inventory: 210,
},
{
Product_ID: 8,
Product_Name: "SuperPlasma 65",
Product_Cost: "1800.0000",
Product_Sale_Price: "2900.0000",
Product_Retail_Price: "3500.0000",
Product_Current_Inventory: 0,
},
{
Product_ID: 9,
Product_Name: "SuperLCD 70",
Product_Cost: "2125.0000",
Product_Sale_Price: "3200.0000",
Product_Retail_Price: "4000.0000",
Product_Current_Inventory: 95,
},
{
Product_ID: 10,
Product_Name: "DesktopLED 21",
Product_Cost: "75.0000",
Product_Sale_Price: "125.0000",
Product_Retail_Price: "175.0000",
Product_Current_Inventory: 0,
},
{
Product_ID: 11,
Product_Name: "DesktopLED 19",
Product_Cost: "70.0000",
Product_Sale_Price: "115.0000",
Product_Retail_Price: "165.0000",
Product_Current_Inventory: 425,
},
{
Product_ID: 12,
Product_Name: "DesktopLCD 21",
Product_Cost: "75.0000",
Product_Sale_Price: "120.0000",
Product_Retail_Price: "170.0000",
Product_Current_Inventory: 210,
},
{
Product_ID: 13,
Product_Name: "DesktopLCD 19",
Product_Cost: "68.0000",
Product_Sale_Price: "110.0000",
Product_Retail_Price: "160.0000",
Product_Current_Inventory: 150,
},
{
Product_ID: 14,
Product_Name: "Projector Plus",
Product_Cost: "225.0000",
Product_Sale_Price: "400.0000",
Product_Retail_Price: "550.0000",
Product_Current_Inventory: 0,
},
{
Product_ID: 15,
Product_Name: "Projector PlusHD",
Product_Cost: "425.0000",
Product_Sale_Price: "600.0000",
Product_Retail_Price: "750.0000",
Product_Current_Inventory: 110,
},
{
Product_ID: 16,
Product_Name: "Projector PlusHT",
Product_Cost: "725.0000",
Product_Sale_Price: "900.0000",
Product_Retail_Price: "1050.0000",
Product_Current_Inventory: 0,
},
{
Product_ID: 17,
Product_Name: "ExcelRemote IR",
Product_Cost: "55.0000",
Product_Sale_Price: "105.0000",
Product_Retail_Price: "150.0000",
Product_Current_Inventory: 650,
},
{
Product_ID: 18,
Product_Name: "ExcelRemote Bluetooth",
Product_Cost: "85.0000",
Product_Sale_Price: "135.0000",
Product_Retail_Price: "180.0000",
Product_Current_Inventory: 310,
},
{
Product_ID: 19,
Product_Name: "ExcelRemote IP",
Product_Cost: "105.0000",
Product_Sale_Price: "155.0000",
Product_Retail_Price: "200.0000",
Product_Current_Inventory: 0,
},
];
import { createApp } from 'vue';
import App from './App.vue';
createApp(App).mount('#app');
<!DOCTYPE html>
<html 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" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/25.1.6/css/dx.light.css" />
<script src="https://cdn.jsdelivr.net/npm/typescript@5.4.5/lib/typescript.js"></script>
<script type="module">
import * as vueCompilerSFC from "https://cdn.jsdelivr.net/npm/@vue/compiler-sfc@3.4.27/dist/compiler-sfc.esm-browser.js";
window.vueCompilerSFC = vueCompilerSFC;
</script>
<script src="https://cdn.jsdelivr.net/npm/core-js@2.6.12/client/shim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/systemjs@0.21.3/dist/system.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript">
System.import("./index.ts");
</script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="app"> </div>
</div>
</body>
</html>