We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de61d35 commit ec6f2a9Copy full SHA for ec6f2a9
packages/devextreme/js/__internal/grids/pivot_grid/field_chooser/m_field_chooser_base.ts
@@ -121,17 +121,6 @@ export class FieldChooserBase extends mixinWidget {
121
};
122
}
123
124
- protected _setAriaSortAttribute(column, ariaSortState, $rootElement) {
125
- $rootElement.removeAttr('aria-roledescription');
126
-
127
- if (column.isGrouped && isDefined(column.sortOrder)) {
128
- const description = column.sortOrder === 'asc'
129
- ? this.localize('dxDataGrid-ariaSortedAscendingColumn')
130
- : this.localize('dxDataGrid-ariaSortedDescendingColumn');
131
- this.setAria('roledescription', description, $rootElement);
132
- }
133
134
135
_init() {
136
super._init();
137
this._headerFilterView = new HeaderFilterView(this);
0 commit comments