<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ZingGrid Demo</title>
<script nonce="undefined" src="https://cdn.zinggrid.com/zinggrid.min.js"></script>
<style>
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
zing-grid[loading] {
height: 317px;
}
</style>
</head>
<body>
<h3>`[filterIndex]` sets the data index to filter on if index has multiple fields.</h3>
<zing-grid id="htmlGrid" caption="filterIndex demo" filter="both">
<zg-colgroup>
<zg-column index="first, last" filter-index="last">
[[index.first]] - [[index.last]]
</zg-column>
<zg-column index="last"></zg-column>
<zg-column index="number"></zg-column>
</zg-colgroup>
<zg-data data='[
{ "first": "Maria", "last": "John", "number": 123 },
{ "first": "David", "last": "Smith", "number": 456 },
{ "first": "Felicity", "last": "Snow", "number": 789 }
]'></zg-data>
</zing-grid>
<script>
ZingGrid.setLicense(['26ccbfec16b8be9ee98c7d57bee6e498']);
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ZingGrid Demo</title>
<script src="https://cdn.zinggrid.com/zinggrid.min.js"></script>
</head>
<body>
<h3>`[filterIndex]` sets the data index to filter on if index has multiple fields.</h3>
<zing-grid id="htmlGrid" caption="filterIndex demo" filter="both">
<zg-colgroup>
<zg-column index="first, last" filter-index="last">
[[index.first]] - [[index.last]]
</zg-column>
<zg-column index="last"></zg-column>
<zg-column index="number"></zg-column>
</zg-colgroup>
<zg-data data='[
{ "first": "Maria", "last": "John", "number": 123 },
{ "first": "David", "last": "Smith", "number": 456 },
{ "first": "Felicity", "last": "Snow", "number": 789 }
]'></zg-data>
</zing-grid>
</body>
</html>
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}