window.onload = function() {
var fromUngroupedData = new DevExpress.data.DataSource({
store: ungroupedData,
key: "id",
group: "Category"
});
var fromPregroupedData = new DevExpress.data.DataSource({
store: pregroupedData,
key: "id",
map: function(item) {
item.key = item.Category;
item.items = item.Products;
return item;
}
});
var viewModel = {
fromUngroupedDataOptions: {
dataSource: fromUngroupedData,
valueExpr: "ID",
grouped: true,
displayExpr: "Name"
},
fromPregroupedDataOptions: {
dataSource: fromPregroupedData,
valueExpr: "ID",
grouped: true,
displayExpr: "Name"
},
customGroupTemplateOptions: {
dataSource: fromUngroupedData,
valueExpr: "ID",
grouped: true,
groupTemplate: "group",
displayExpr: "Name"
}
};
ko.applyBindings(viewModel, document.getElementById("select-box-demo"));
};
<!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>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/20.2.5/js/dx.all.js"></script>
<script src="data.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="select-box-demo">
<div class="dx-fieldset">
<div class="dx-field">
<div class="dx-field-label">Data grouped in the DataSource</div>
<div class="dx-field-value">
<div data-bind="dxSelectBox: fromUngroupedDataOptions"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Pre-grouped data</div>
<div class="dx-field-value">
<div data-bind="dxSelectBox: fromPregroupedDataOptions"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Custom group template</div>
<div class="dx-field-value">
<div data-bind="dxSelectBox: customGroupTemplateOptions">
<div data-options="dxTemplate: {name: 'group'}">
<div class='custom-icon'>
<span class='dx-icon-box icon'></span>
<span data-bind="text: key"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
.custom-icon .icon {
font-size: 17px;
color: #f05b41;
margin-right: 2px;
}
var ungroupedData = [{
"ID": 1,
"Name": "HD Video Player",
"Category": "Video Players"
}, {
"ID": 2,
"Name": "SuperHD Player",
"Category": "Video Players"
}, {
"ID": 3,
"Name": "SuperPlasma 50",
"Category": "Televisions"
}, {
"ID": 4,
"Name": "SuperLED 50",
"Category": "Televisions"
}, {
"ID": 5,
"Name": "SuperLED 42",
"Category": "Televisions"
}, {
"ID": 6,
"Name": "SuperLCD 55",
"Category": "Televisions"
}, {
"ID": 7,
"Name": "SuperLCD 42",
"Category": "Televisions"
}, {
"ID": 8,
"Name": "SuperPlasma 65",
"Category": "Televisions"
}, {
"ID": 9,
"Name": "SuperLCD 70",
"Category": "Televisions"
}, {
"ID": 10,
"Name": "DesktopLED 21",
"Category": "Monitors"
}, {
"ID": 11,
"Name": "DesktopLED 19",
"Category": "Monitors"
}, {
"ID": 12,
"Name": "DesktopLCD 21",
"Category": "Monitors"
}, {
"ID": 13,
"Name": "DesktopLCD 19",
"Category": "Monitors"
}, {
"ID": 14,
"Name": "Projector Plus",
"Category": "Projectors"
}, {
"ID": 15,
"Name": "Projector PlusHD",
"Category": "Projectors"
}, {
"ID": 16,
"Name": "Projector PlusHT",
"Category": "Projectors"
}, {
"ID": 17,
"Name": "ExcelRemote IR",
"Category": "Automation"
}, {
"ID": 18,
"Name": "ExcelRemote BT",
"Category": "Automation"
}, {
"ID": 19,
"Name": "ExcelRemote IP",
"Category": "Automation"
}];
var pregroupedData = [{
"Category": "Video Players",
"Products": [{
"ID": 1,
"Name": "HD Video Player"
}, {
"ID": 2,
"Name": "SuperHD Player"
}],
}, {
"Category": "Televisions",
"Products": [{
"ID": 3,
"Name": "SuperPlasma 50"
}, {
"ID": 4,
"Name": "SuperLED 50"
}, {
"ID": 5,
"Name": "SuperLED 42"
}, {
"ID": 6,
"Name": "SuperLCD 55"
}, {
"ID": 7,
"Name": "SuperLCD 42"
}, {
"ID": 8,
"Name": "SuperPlasma 65"
}, {
"ID": 9,
"Name": "SuperLCD 70"
}]
}, {
"Category": "Monitors",
"Products": [{
"ID": 10,
"Name": "DesktopLED 21"
}, {
"ID": 11,
"Name": "DesktopLED 19"
}, {
"ID": 12,
"Name": "DesktopLCD 21"
}, {
"ID": 13,
"Name": "DesktopLCD 19"
}]
}, {
"Category": "Projectors",
"Products": [{
"ID": 14,
"Name": "Projector Plus"
}, {
"ID": 15,
"Name": "Projector PlusHD"
}, {
"ID": 16,
"Name": "Projector PlusHT"
}]
}, {
"Category": "Automation",
"Products": [{
"ID": 17,
"Name": "ExcelRemote IR"
}, {
"ID": 18,
"Name": "ExcelRemote BT"
}, {
"ID": 19,
"Name": "ExcelRemote IP"
}]
}];