Whether the grid is disabled.
()
| 137 | |
| 138 | /** Whether the grid is disabled. */ |
| 139 | async isDisabled(): Promise<boolean> { |
| 140 | const host = await this.host(); |
| 141 | return (await host.getAttribute('aria-disabled')) === 'true'; |
| 142 | } |
| 143 | |
| 144 | /** Whether the grid is multi-selectable. */ |
| 145 | async isMultiSelectable(): Promise<boolean> { |
no test coverage detected