diff --git a/lib/core/datatable/components/datatable/datatable.component.html b/lib/core/datatable/components/datatable/datatable.component.html index 6ecf1735cb..5bcf6ee2fb 100644 --- a/lib/core/datatable/components/datatable/datatable.component.html +++ b/lib/core/datatable/components/datatable/datatable.component.html @@ -97,6 +97,8 @@ class=" adf-datatable-cell adf-datatable-cell--{{col.type || 'text'}} {{col.cssClass}}" [attr.title]="col.title | translate" [attr.data-automation-id]="getAutomationValue(row, col)" + [attr.aria-selected]="row.isSelected ? true : false" + [attr.aria-label]="col.title ? (col.title | translate) : null" tabindex="0" (click)="onRowClick(row, $event)" (keydown.enter)="onEnterKeyPressed(row, $event)"