-
Notifications
You must be signed in to change notification settings - Fork 600
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DataGrid - Contrast between icons in the Filter Row menu and their background doesn't comply with WCAG accessibility standards (T1257970) #28522
base: 24_2
Are you sure you want to change the base?
Conversation
getFilterCell(columnIndex: number): Selector { | ||
return this.getFilterRow().find(`[aria-colindex='${columnIndex + 1}']`); | ||
} | ||
|
||
getFilterRangeOverlay(): Selector { | ||
return this.body.find(`.${this.addWidgetPrefix(CLASS.filterRangeOverlay)}`); | ||
} | ||
|
||
getFilterMenuOverlay(): Selector { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use the following approach to work with filter menu
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Raushen , how do you mean by this? I see the link points to FilterEditor. Also to add, Filter Menu is found in an overlay wrapper which is outside the datagrid element..
No description provided.