• 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: 413px;
    15. }
    16. </style>
    17. </head>
    18.  
    19. <body>
    20. <zing-grid caption="EPL Top Scorers" layout="row" layout-controls="disabled" viewport-stop>
    21. <zg-data data='[
    22. {
    23. "playerInfo": {
    24. "name": "Eden Hazard",
    25. "club": "Chelsea",
    26. "goals": 5
    27. }
    28. },
    29. {
    30. "playerInfo": {
    31. "name": "Aleksandar Mitrovic",
    32. "club": "Fulham",
    33. "goals": 5
    34. }
    35. },
    36. {
    37. "playerInfo": {
    38. "name": "Sergio Agüero",
    39. "club": "Manchester City",
    40. "goals": 4
    41. }
    42. },
    43. {
    44. "playerInfo": {
    45. "name": "Romelu Lukaku",
    46. "club": "Manchester United",
    47. "goals": 4
    48. }
    49. },
    50. {
    51. "playerInfo": {
    52. "name": "Sadio Mané",
    53. "club": "Liverpool",
    54. "goals": 4
    55. }
    56. }
    57. ]'></zg-data>
    58. </zing-grid>
    59. <script>
    60. ZingGrid.setLicense(['26ccbfec16b8be9ee98c7d57bee6e498']);
    61. </script>
    62. </body>
    63.  
    64. </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 caption="EPL Top Scorers" layout="row" layout-controls="disabled" viewport-stop>
    12. <zg-data data='[
    13. {
    14. "playerInfo": {
    15. "name": "Eden Hazard",
    16. "club": "Chelsea",
    17. "goals": 5
    18. }
    19. },
    20. {
    21. "playerInfo": {
    22. "name": "Aleksandar Mitrovic",
    23. "club": "Fulham",
    24. "goals": 5
    25. }
    26. },
    27. {
    28. "playerInfo": {
    29. "name": "Sergio Agüero",
    30. "club": "Manchester City",
    31. "goals": 4
    32. }
    33. },
    34. {
    35. "playerInfo": {
    36. "name": "Romelu Lukaku",
    37. "club": "Manchester United",
    38. "goals": 4
    39. }
    40. },
    41. {
    42. "playerInfo": {
    43. "name": "Sadio Mané",
    44. "club": "Liverpool",
    45. "goals": 4
    46. }
    47. }
    48. ]'></zg-data>
    49. </zing-grid>
    50. </body>
    51.  
    52. </html>
    1. body {
    2. background: #e6e6e6;
    3. }
    1.