<!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: 277px;
}
</style>
</head>
<body>
<h3>`[recordKey]` adds the record key column to the grid.
If set to a string, the string is the header text.
</h3>
<zing-grid caption="RecordKey" record-key="First">
<zg-data data='{
"Maria": {"last": "John", "number": 123 },
"David": {"last": "Smith", "number": 456 },
"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>`[recordKey]` adds the record key column to the grid.
If set to a string, the string is the header text.
</h3>
<zing-grid caption="RecordKey" record-key="First">
<zg-data data='{
"Maria": {"last": "John", "number": 123 },
"David": {"last": "Smith", "number": 456 },
"Felicity": {"last": "Snow", "number": 789 }
}'></zg-data>
</zing-grid>
</body>
</html>
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}