• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingGrid: Blank Grid</title>
    7. <script nonce="undefined" src="https://cdn.zinggrid.com/zinggrid.min.js"></script>
    8. <style>
    9. body {
    10. background: #e6e6e6;
    11. }
    12.  
    13. zing-grid[loading] {
    14. height: 165px;
    15. }
    16. </style>
    17. </head>
    18.  
    19. <body>
    20.  
    21. <zing-grid data="[
    22. {
    23. &quot;name&quot;: &quot;Philip&quot;,
    24. &quot;number&quot;: 123
    25. },
    26. {
    27. &quot;name&quot;: &quot;Bender&quot;,
    28. &quot;number&quot;: 456
    29. }
    30. ]" role="grid" viewport="tablet-portrait">
    31. </zing-grid>
    32.  
    33. <script>
    34. ZingGrid.setLicense(['26ccbfec16b8be9ee98c7d57bee6e498']);
    35. </script>
    36. </body>
    37.  
    38. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingGrid: Blank Grid</title>
    7. <script src="https://cdn.zinggrid.com/zinggrid.min.js"></script>
    8. </head>
    9.  
    10. <body>
    11.  
    12. <zing-grid data="[
    13. {
    14. &quot;name&quot;: &quot;Philip&quot;,
    15. &quot;number&quot;: 123
    16. },
    17. {
    18. &quot;name&quot;: &quot;Bender&quot;,
    19. &quot;number&quot;: 456
    20. }
    21. ]" role="grid" viewport="tablet-portrait">
    22. </zing-grid>
    23.  
    24. </body>
    25.  
    26. </html>
    1. body {
    2. background: #e6e6e6;
    3. }
    1.