how to get a list of value
how to get a list of value
jadeite1000
Posts: 9Questions: 7Answers: 0
Hi All:
I have a datable that have 100 rows with the 5th column with the balances.
10 records per page, so there is 10 pages.
I need to get a list of the array of the balance for the 100 rows and check each balance if it is over 100 or less than .10.
Is there an api to get a list of the balances so I can loop through it and see each balance to see if it's over 100 or less than 10 cents.
Any help or hint would be greatly appreciated it.
This discussion has been closed.
Answers
Hi @jadeite1000 ,
You could just use
column().data()
to get the data for that column.Cheers,
Colin