<!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; } zg-caption h1 { font-size: 2rem; } zg-caption p { font-size: 1rem; } zg-head { font-size: 1.3rem; } zing-grid[loading] { height: 404px; } </style> </head> <body> <h3>`ZGParam[serverFilter]` enables server filtering.</h3> <h3>`ZGColumn[filterKey]` sets the key for server-side filtering.</h3> <p>In this demo, the "Species" column is set up to not include the Sanchez and Smith family from C-137 in filter results.</p> <zing-grid filter="inline" sort pager> <zg-colgroup> <zg-column index="name"></zg-column> <zg-column index="species" filter-key="excludeMain"></zg-column> </zg-colgroup> <zg-data> <zg-param name="src" value="https://zgdemo-filter.glitch.me/api"></zg-param> <zg-param name="loadByPage" value="true"></zg-param> <zg-param name="recordPath" value="data"></zg-param> <zg-param name="serverFilter" value="true"></zg-param> </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>`ZGParam[serverFilter]` enables server filtering.</h3> <h3>`ZGColumn[filterKey]` sets the key for server-side filtering.</h3> <p>In this demo, the "Species" column is set up to not include the Sanchez and Smith family from C-137 in filter results.</p> <zing-grid filter="inline" sort pager> <zg-colgroup> <zg-column index="name"></zg-column> <zg-column index="species" filter-key="excludeMain"></zg-column> </zg-colgroup> <zg-data> <zg-param name="src" value="https://zgdemo-filter.glitch.me/api"></zg-param> <zg-param name="loadByPage" value="true"></zg-param> <zg-param name="recordPath" value="data"></zg-param> <zg-param name="serverFilter" value="true"></zg-param> </zg-data> </zing-grid> </body> </html>
html, body { height: 100%; width: 100%; margin: 0; padding: 0; } zg-caption h1 { font-size: 2rem; } zg-caption p { font-size: 1rem; } zg-head { font-size: 1.3rem; }