I am new here using the Sigma Grid. How can I count the rows in Sigma Grid? I just want the number of rows that are appear in my screen.
thanks for advance.
I am new here using the Sigma Grid. How can I count the rows in Sigma Grid? I just want the number of rows that are appear in my screen.
thanks for advance.
All data present in sigma grid:
var allSelectedRecords = myGrid.dataset.data;
This will give the number of rows present in sigma grid:
allSelectedRecords.length;