• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingGrid Demo</title>
    7. <script nonce="undefined" src="https://cdn.zinggrid.com/zinggrid.min.js"></script>
    8. <style>
    9. zing-grid[loading] {
    10. height: 261px;
    11. }
    12. </style>
    13. </head>
    14.  
    15. <body>
    16. <h3>The 'row-numnber' column type renders the row index of the row.</h3>
    17. <zing-grid editor>
    18. <zg-data data='[{
    19. "quantity": 4
    20. },
    21. {
    22. "quantity": 8
    23. },
    24. {
    25. "quantity": 9
    26. },
    27. {
    28. "quantity": 3
    29. }]'></zg-data>
    30. <zg-colgroup>
    31. <zg-column type="row-number" header="Row Number"></zg-column>
    32. <zg-column index="quantity" type="number"></zg-column>
    33. <zg-column type="remover"></zg-column>
    34. </zg-colgroup>
    35. </zing-grid>
    36. <script>
    37. ZingGrid.setLicense(['26ccbfec16b8be9ee98c7d57bee6e498']);
    38. </script>
    39. </body>
    40.  
    41. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingGrid Demo</title>
    7. <script src="https://cdn.zinggrid.com/zinggrid.min.js"></script>
    8. </head>
    9.  
    10. <body>
    11. <h3>The 'row-numnber' column type renders the row index of the row.</h3>
    12. <zing-grid editor>
    13. <zg-data data='[{
    14. "quantity": 4
    15. },
    16. {
    17. "quantity": 8
    18. },
    19. {
    20. "quantity": 9
    21. },
    22. {
    23. "quantity": 3
    24. }]'></zg-data>
    25. <zg-colgroup>
    26. <zg-column type="row-number" header="Row Number"></zg-column>
    27. <zg-column index="quantity" type="number"></zg-column>
    28. <zg-column type="remover"></zg-column>
    29. </zg-colgroup>
    30. </zing-grid>
    31. </body>
    32.  
    33. </html>
    1.  
    1.