You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to programmatically select items in the table?
I can't find the option in the api as well as when looking at the code of the table component.
Would be handy to have property for it for example: <md-table> <md-table-row slot="md-table-row" slot-scope="{ item }" md-selectable="multiple" md-auto-select :md-is-selected="true">
If it's not possible currently, is my only option is to fork and add the option?
Thanks
The text was updated successfully, but these errors were encountered:
* fix(MdTable): multiple selection with table sorting
an easy way to handle multiple selection
fix#1348
* refactor(MdTable): single selection using instance comparing instead of id comparing
both `MdTable` and `MdTableRow` emit `md-selected` event to avoid breaking change
* feat(MdTable): new props `:md-selected-value.sync` for reactive selection
fix#1292
* fix(MdTable): `syncSelectedValue` without `mdSelectedValue` in multiple selecting mode
* fix(MdTableHeadSelection): fix `allSelected`, now disabled row could be tick from `md-selected-value
* fix(MdTableRow): remove `md-selected` event
too many duplicated events on a selection. It should be emit from `MdTable`
BREAKING CHANGE: no more `md-selected` event from `MdTableRow`
* fix(MdTable): select event should be triggered after select update event
* fix(MdTableHeadSelection): select all only take effect on selectable items
Is it possible to programmatically select items in the table?
I can't find the option in the api as well as when looking at the code of the table component.
Would be handy to have property for it for example:
<md-table> <md-table-row slot="md-table-row" slot-scope="{ item }" md-selectable="multiple" md-auto-select :md-is-selected="true">
If it's not possible currently, is my only option is to fork and add the option?
Thanks
The text was updated successfully, but these errors were encountered: