Bulk Select
Master checkbox, row checks, and a toolbar that swaps New for bulk actions.
| Name | Age | ||
|---|---|---|---|
| Anna | anna@example.com | 18 | |
| Homer | homer@example.com | 35 | |
| Oscar | oscar@example.com | 52 | |
| Emily | emily@example.com | 30 | |
| Jara | jara@example.com | 25 |
[]
Important JavaScript
function getSelectedRows() {
return Array.from(rowChecks)
.filter(function (box) { return box.checked; })
.map(function (box) { return JSON.parse(box.dataset.row); });
}