I am working on a table that contains multiple fields,
My goal is to enable row selection using checkboxes.
name Age date
-----------------------
aaa 22 12-06-2019
bbb 23 13-06-2019
ccc 24 21-09-2019
In this scenario:
1. I need to be able to select rows using checkboxes.
2. Upon selecting a row, I should retrieve the unique ID associated with that row.
3. The selected IDs should then be included in a URL format like (), where 1, 2, and 3 represent the IDs of different fields.
4. Finally, I want to display and print these selected values.
Here are my questions:
How can I retrieve the row's ID upon checkbox selection?
What is the best way to print selected rows using Angular 8?
If anyone has any insights or guidance, please feel free to share!