Requirements:
- Styling to add to d2l-table
- Header styling (repeated rows. Prefer inside thead)
- Footer (Summary) styling
- Cell alignment styling
- Select button. For single select, use radio input type. For multi select, use checkbox input type
selected attribute indicates selection state. Bound to input's checked state
no-selection attribute disables input element creation. A blank td is created instead
This component's purpose is to add a checkbox table cell to the start of the row and fire appropriate events.
Difficulties:
- A td can't be a child of a template body. The element will need to be created via Javascript
Requirements:
selectedattribute indicates selection state. Bound to input's checked stateno-selectionattribute disables input element creation. A blanktdis created insteadThis component's purpose is to add a checkbox table cell to the start of the row and fire appropriate events.
Difficulties: