• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingGrid: Basic Template</title>
    7. <script nonce="undefined" src="https://cdn.zinggrid.com/dev/zinggrid-dev.min.js"></script>
    8. <style>
    9. body {
    10. background: #e6e6e6;
    11. }
    12.  
    13. select {
    14. margin-bottom: 1rem;
    15. }
    16.  
    17. zing-grid[loading] {
    18. height: 213px;
    19. }
    20. </style>
    21. </head>
    22.  
    23. <body>
    24.  
    25. <h3>`[rowDetailsRenderer]` points to a function that renders for the zg-row-details component.</h3>
    26.  
    27. <zing-grid row-details-renderer="rowDetailsRenderer" data='[
    28. { "first": "Maria", "last": "John", "tests": [{"test1": 0.92, "test2": 0.97 ,"test3": 0.84}] },
    29. { "first": "David", "last": "Smith", "tests": [{"test1": 0.86, "test2": 0.79, "test3": 0.86}] },
    30. { "first": "Felicity", "last": "Snow", "tests": [{"test1": 0.84, "test2": 0.66, "test3": 0.76}] }
    31. ]'>
    32. <zg-colgroup>
    33. <zg-column index="first"></zg-column>
    34. <zg-column index="last"></zg-column>
    35. </zg-colgroup>
    36. </zing-grid>
    37.  
    38. <script>
    39. ZingGrid.setLicense(['26ccbfec16b8be9ee98c7d57bee6e498']); // window:load event for Javascript to run after HTML
    40. // because this Javascript is injected into the document head
    41. window.addEventListener('load', () => {
    42. // Javascript code to execute after DOM content
    43. let rowDetailsRenderer = (record, oDOMRowDetails) => {
    44. const nestedGrid = document.createElement('zing-grid');
    45. nestedGrid.data = record.tests;
    46. return nestedGrid;
    47. };
    48. ZingGrid.registerMethod(rowDetailsRenderer);
    49. });
    50. </script>
    51. </body>
    52.  
    53. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingGrid: Basic Template</title>
    7. <script src="https://cdn.zinggrid.com/dev/zinggrid-dev.min.js"></script>
    8. </head>
    9.  
    10. <body>
    11.  
    12. <h3>`[rowDetailsRenderer]` points to a function that renders for the zg-row-details component.</h3>
    13.  
    14. <zing-grid row-details-renderer="rowDetailsRenderer" data='[
    15. { "first": "Maria", "last": "John", "tests": [{"test1": 0.92, "test2": 0.97 ,"test3": 0.84}] },
    16. { "first": "David", "last": "Smith", "tests": [{"test1": 0.86, "test2": 0.79, "test3": 0.86}] },
    17. { "first": "Felicity", "last": "Snow", "tests": [{"test1": 0.84, "test2": 0.66, "test3": 0.76}] }
    18. ]'>
    19. <zg-colgroup>
    20. <zg-column index="first"></zg-column>
    21. <zg-column index="last"></zg-column>
    22. </zg-colgroup>
    23. </zing-grid>
    24.  
    25. </body>
    26.  
    27. </html>
    1. body {
    2. background: #e6e6e6;
    3. }
    4.  
    5. select {
    6. margin-bottom: 1rem;
    7. }
    1. // window:load event for Javascript to run after HTML
    2. // because this Javascript is injected into the document head
    3. window.addEventListener('load', () => {
    4. // Javascript code to execute after DOM content
    5. let rowDetailsRenderer = (record, oDOMRowDetails) => {
    6. const nestedGrid = document.createElement('zing-grid');
    7. nestedGrid.data = record.tests;
    8. return nestedGrid;
    9. };
    10. ZingGrid.registerMethod(rowDetailsRenderer);
    11. });