jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
175 lines (155 loc) • 7.29 kB
HTML
<html lang="en">
<head>
<title id='Description'>TreeGrid Custom Element ConditionalFormatting</title>
<meta name="description" content="This is an example of how to add CSS to TreeGrid Custom Element." />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" />
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<link rel="stylesheet" href="../../../styles/demos.css" type="text/css" />
<script type="text/javascript" src="../../../scripts/webcomponents-lite.min.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.elements.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxscrollbar.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdatatable.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxtreegrid.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<style>
html, body {
width: 100vw;
height: 100vh;
padding: 0;
margin: 0;
}
.max {
color: black\9;
background-color: #63be7b\9;
}
.avg {
color: black\9;
background-color: #f8e984\9;
}
.minavg {
color: black\9;
background-color: #f9806f\9;
}
.min {
color: black\9;
background-color: #f8696b\9;
}
.max:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected), .jqx-widget .max:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected) {
color: black;
background-color: #63be7b;
}
.avg:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected), .jqx-widget .avg:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected) {
color: black;
background-color: #f8e984;
}
.minavg:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected), .jqx-widget .minavg:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected) {
color: black;
background-color: #f9806f;
}
.min:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected), .jqx-widget .min:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected) {
color: black;
background-color: #f8696b;
}
</style>
<script type="text/javascript">
var data =
[
{
'id': '1', 'name': 'Corporate Headquarters', 'budget': '1230000', 'location': 'Las Vegas',
'children':
[
{
'id': '2', 'name': 'Finance Division', 'budget': '423000', 'location': 'San Antonio',
'children':
[
{ 'id': '3', 'name': 'Accounting Department', 'budget': '113000', 'location': 'San Antonio' },
{
'id': '4', 'name': 'Investment Department', 'budget': '310000', 'location': 'San Antonio',
'children':
[
{ 'id': '5', 'name': 'Banking Office', 'budget': '240000', 'location': 'San Antonio' },
{ 'id': '6', 'name': 'Bonds Office', 'budget': '70000', 'location': 'San Antonio' },
]
}
]
},
{
'id': '7', 'name': 'Operations Division', 'budget': '600000', 'location': 'Miami',
'children':
[
{ 'id': '8', 'name': 'Manufacturing Department', 'budget': '300000', 'location': 'Miami' },
{ 'id': '9', 'name': 'Public Relations Department', 'budget': '200000', 'location': 'Miami' },
{ 'id': '10', 'name': 'Sales Department', 'budget': '100000', 'location': 'Miami' }
]
},
{ 'id': '11', 'name': 'Research Division', 'budget': '200000', 'location': 'Boston' }
]
}
];
var source =
{
dataType: 'json',
dataFields: [
{ name: 'name', type: 'string' },
{ name: 'budget', type: 'number' },
{ name: 'id', type: 'number' },
{ name: 'children', type: 'array' },
{ name: 'location', type: 'string' }
],
hierarchy:
{
root: 'children'
},
localData: data,
id: 'id'
};
var dataAdapter = new jqx.dataAdapter(source);
var cellClass = function (row, dataField, cellText, rowData) {
var cellValue = rowData[dataField];
if (cellValue < 100000) {
return 'min';
}
if (cellValue < 200000) {
return 'minavg';
}
if (cellValue < 400000) {
return 'avg';
}
return 'max';
};
JQXElements.settings['treeGridSettings'] =
{
source: dataAdapter,
altRows: true,
selectionMode: 'none',
enableHover: false,
ready: function () {
var myTreeGrid = document.querySelector('jqx-tree-grid');
myTreeGrid.expandRow(1);
setTimeout(function () {
myTreeGrid.expandRow(2);
myTreeGrid.expandRow(7);
}, 100);
},
editable: true,
columns: [
{ text: 'ID', dataField: 'id', width: 150 },
{ text: 'Name', dataField: 'name', width: 250 },
{ text: 'Budget', align: 'right', cellClassName: cellClass, cellsAlign: 'right', cellsFormat: 'c2', dataField: 'budget', width: 200 },
{ text: 'Location', dataField: 'location' }
]
};
</script>
</head>
<body>
<div class="example-description">
The sample illustrates how to add custom CSS styles to Tree Grid Custom Element cells under specific conditions.
</div>
<jqx-tree-grid settings="treeGridSettings"></jqx-tree-grid>
</body>
</html>