You need to sign in to do that
Don't have an account?
Hitesh Khanna
How to iterate through values of a column of table In LWC ?
I have a table in my LWC component containing two columns 'name' and 'id'. The values of these columns will come based on filters that i have added(so the values will be different everytime, not hardcoded).
I want to iterate over these values and store it an array.
How can i iterate over these values in table.
I want to iterate over these values and store it an array.
How can i iterate over these values in table.
You can try using javascript in LWC.
https://salesforce.stackexchange.com/questions/284980/lwc-iterate-through-rows-of-lightning-datatable-using-javascript
Thanks,