<!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>`[resizableMinWidth]` sets the minumum width the column can be set to when resizing.</h3>
<zing-grid caption="resizableMinWidth Demo">
<zg-colgroup>
<zg-column index="first" resizable-min-width=200 resizable></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>`[resizableMinWidth]` sets the minumum width the column can be set to when resizing.</h3>
<zing-grid caption="resizableMinWidth Demo">
<zg-colgroup>
<zg-column index="first" resizable-min-width=200 resizable></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;
}