-
Data Grids / Data Management
-
Data Grid
- Overview
-
Data Binding
-
Filtering
- Sorting
-
Editing
-
Grouping
-
Selection
- Focused Row
- Paging
-
Scrolling
-
Columns
-
Master-Detail
-
Data Summaries
-
Drag & Drop
-
Export to PDF
-
Export to Excel
- Appearance
-
Customization
- State Persistence
-
Adaptability
-
Keyboard Navigation
- Right-To-Left Support
-
Tree List
- Overview
-
Data Binding
-
Filtering
- Sorting
-
Editing
-
Selection
- Focused Row
- Paging
-
Columns
- Drag & Drop
- State Persistence
- Adaptability
-
Keyboard Navigation
-
Card View
-
Pivot Grid
- Overview
-
Data Binding
-
Field Management
-
Data Summaries
- Drill Down
- Filtering
-
Scrolling
-
Export to Excel
- Chart Integration
- Customization
- State Persistence
-
Filter Builder
-
-
Data Visualization
-
Charts
- Overview
-
Data Binding
-
Common Concepts
-
Axis
-
Aggregation
-
Tooltips
-
Selection
-
Customization
-
Zooming
-
Export
-
-
Area Charts
-
Bar Charts
- Bullet Charts
-
Doughnut Charts
-
Financial Charts
-
Funnel and Pyramid Charts
-
Line Charts
- Pareto Chart
-
Pie Charts
-
Point Charts
-
Polar and Radar Charts
-
Range Charts
- Sankey Chart
-
Sparkline Charts
-
Tree Map
-
Gauges
- Overview
-
Runtime update
-
Bar Gauge
-
Circular Gauge
-
Linear Gauge
-
Diagram
- Overview
-
Data Binding
-
Featured Shapes
-
Custom Shapes
-
Document Capabilities
-
User Interaction
- UI Customization
- Adaptability
-
-
Scheduling / Planning
-
Scheduler
- Overview
-
Data Binding
-
Views
-
Appointments
-
Timetable
- Editing
-
Grouping
- Virtual Scrolling
- Drag & Drop
-
Customization
- Adaptability
-
Gantt
- Overview
- Data Binding
-
Filtering
- Sorting
- Strip Lines
- Export to PDF
- Validation
-
Customization
-
-
Messaging
-
WYSIWYG Editor
-
Forms
-
Data Editors
- Overview
-
Common Concepts
-
Calendar
- Check Box
- Color Box
-
Date Box
-
Date Range Box
-
Number Box
- Radio Group
-
Range Selector
- Range Slider
- Slider
- Speech To Text
- Switch
- Text Area
- Text Box
-
Drop-Downs
- Autocomplete
-
Drop Down Box
-
Select Box
-
Tag Box
-
Lookup
-
Buttons
-
File Upload / File Management
-
File Manager
- Overview
-
File System Types
-
Customization
-
File Uploader
-
-
Popup and Notifications
-
Navigation
- Overview
- Accordion
-
Action Sheet
-
Context Menu
-
Menu
- Multi View
-
Drawer
-
Tab Panel
-
Tabs
-
Toolbar
-
Stepper
- Pagination
-
List
-
Tree View
- Right-to-Left Support
-
Layout
-
Interactive Wrappers
-
Sortable
- Resizable
-
-
Progress Indicators
-
Maps
- Overview
-
Map
-
Vector Map
-
Data Binding
- Multiple Layers
-
Markers
- Legend
-
Zooming and Panning
-
Customization
-
-
Localization
Related Demos:
Your search did not match any results.
JavaScript/jQuery Filter Builder - With Data Grid
This demo shows how to use a standalone JavaScript FilterBuilder to filter data in the DataGrid component. The DataGrid also has an integrated filter builder that can be invoked using the filter panel (see the Filter Panel demo).
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
$(() => {
$('#filterBuilder').dxFilterBuilder({
fields,
value: filter,
});
$('#apply').dxButton({
text: 'Apply Filter',
type: 'default',
onClick() {
const filter = $('#filterBuilder').dxFilterBuilder('instance').option('value');
$('#dataGrid').dxDataGrid('instance').option('filterValue', filter);
},
});
$('#dataGrid').dxDataGrid({
columns,
showBorders: true,
dataSource: products,
filterValue: filter,
height: 300,
});
});
<!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=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/25.1.6/css/dx.light.css" />
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<script src="js/dx.all.js?v=25.1.6"></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="filter-container">
<div id="filterBuilder"></div>
<div id="apply"></div>
<div class="dx-clearfix"></div>
</div>
<div id="dataGrid"></div>
</div>
</body>
</html>
.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;
}
const filter = [
['Product_Current_Inventory', '<>', 0],
'or',
[
['Product_Name', 'contains', 'HD'],
'and',
['Product_Cost', '<', 200],
],
];
const fields = [
{
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',
},
];
const columns = [
{
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',
},
];
const products = [
{
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,
},
];