• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingGrid: Simple 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: 213px;
    15. }
    16. </style>
    17. </head>
    18.  
    19. <body>
    20. <zing-grid data='[
    21. { "first": "Maria", "last": "John", "tests": [{"test1": 0.92, "test2": 0.97 ,"test3": 0.84}] },
    22. { "first": "David", "last": "Smith", "tests": [{"test1": 0.86, "test2": 0.79, "test3": 0.86}] },
    23. { "first": "Felicity", "last": "Snow", "tests": [{"test1": 0.84, "test2": 0.66, "test3": 0.76}] }
    24. ]'>
    25. <zg-colgroup>
    26. <zg-column index="first"></zg-column>
    27. <zg-column index="last"></zg-column>
    28. </zg-colgroup>
    29. </zing-grid>
    30.  
    31. <template id="rowDetailsTemplate">
    32. <zing-grid data='[[record.tests]]'>
    33. <zg-colgroup>
    34. <zg-column index="test1"></zg-column>
    35. <zg-column index="test2"></zg-column>
    36. <zg-column index="test3"></zg-column>
    37. </zg-colgroup>
    38. </zing-grid>
    39. </template>
    40. <script>
    41. ZingGrid.setLicense(['26ccbfec16b8be9ee98c7d57bee6e498']);
    42. const zgRef = document.querySelector('zing-grid');
    43.  
    44. // Enable row details
    45. zgRef.setRowDetailsTemplate('rowDetailsTemplate');
    46. </script>
    47. </body>
    48.  
    49. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingGrid: Simple Grid</title>
    7. <script src="https://cdn.zinggrid.com/zinggrid.min.js"></script>
    8. </head>
    9.  
    10. <body>
    11. <zing-grid data='[
    12. { "first": "Maria", "last": "John", "tests": [{"test1": 0.92, "test2": 0.97 ,"test3": 0.84}] },
    13. { "first": "David", "last": "Smith", "tests": [{"test1": 0.86, "test2": 0.79, "test3": 0.86}] },
    14. { "first": "Felicity", "last": "Snow", "tests": [{"test1": 0.84, "test2": 0.66, "test3": 0.76}] }
    15. ]'>
    16. <zg-colgroup>
    17. <zg-column index="first"></zg-column>
    18. <zg-column index="last"></zg-column>
    19. </zg-colgroup>
    20. </zing-grid>
    21.  
    22. <template id="rowDetailsTemplate">
    23. <zing-grid data='[[record.tests]]'>
    24. <zg-colgroup>
    25. <zg-column index="test1"></zg-column>
    26. <zg-column index="test2"></zg-column>
    27. <zg-column index="test3"></zg-column>
    28. </zg-colgroup>
    29. </zing-grid>
    30. </template>
    31. </body>
    32.  
    33. </html>
    1. body {
    2. background: #e6e6e6;
    3. }
    1. const zgRef = document.querySelector('zing-grid');
    2.  
    3. // Enable row details
    4. zgRef.setRowDetailsTemplate('rowDetailsTemplate');