• 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: 205px;
    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. &quot;colors&quot;: {
    26. &quot;primary&quot;: &quot;red&quot;,
    27. &quot;secondary&quot;: &quot;chartreuse&quot;
    28. }
    29. },
    30. {
    31. &quot;name&quot;: &quot;Bender&quot;,
    32. &quot;number&quot;: 456,
    33. &quot;colors&quot;: {
    34. &quot;primary&quot;: &quot;black&quot;,
    35. &quot;secondary&quot;: &quot;yellow&quot;
    36. }
    37. }
    38. ]" role="grid" viewport="tablet-portrait"></zing-grid>
    39.  
    40. <script>
    41. ZingGrid.setLicense(['26ccbfec16b8be9ee98c7d57bee6e498']);
    42. </script>
    43. </body>
    44.  
    45. </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. &quot;colors&quot;: {
    17. &quot;primary&quot;: &quot;red&quot;,
    18. &quot;secondary&quot;: &quot;chartreuse&quot;
    19. }
    20. },
    21. {
    22. &quot;name&quot;: &quot;Bender&quot;,
    23. &quot;number&quot;: 456,
    24. &quot;colors&quot;: {
    25. &quot;primary&quot;: &quot;black&quot;,
    26. &quot;secondary&quot;: &quot;yellow&quot;
    27. }
    28. }
    29. ]" role="grid" viewport="tablet-portrait"></zing-grid>
    30.  
    31. </body>
    32.  
    33. </html>
    1. body {
    2. background: #e6e6e6;
    3. }
    1.