All work
- Query Builder - modal dialog focus inconsistencies across screenreadersUIPQB-141Resolved issue: UIPQB-141Uladzislau Kutarkin
- [SPRINT TESTING] [QB] Preview of first 100 records doesn't display after successful query runUIPQB-140Resolved issue: UIPQB-140Mikita Siadykh
- [QB] It's not possible to select the current date from the DatePickerUIPQB-138Resolved issue: UIPQB-138Uladzislau Kutarkin
- [Organizations-contact info] The 'Organization accounting code' value contains incorrect '\'(backslash) in the queryUIPQB-102Resolved issue: UIPQB-102Vadym Shchekotilin
- Results viewer doesn't show 0 value for number typeUIPQB-84Resolved issue: UIPQB-84Magda Zacharska
- Build queries that search for null / empty valuesUIPQB-76Resolved issue: UIPQB-76Magda Zacharska
- Display grouped fields within a list rowUIPQB-75Resolved issue: UIPQB-75Magda Zacharska
- [QB] It's not possible to scroll throught the fields by clicking on scroll up/down iconsSTCOM-1376Resolved issue: STCOM-1376John Coburn
8 of 8
Query Builder - modal dialog focus inconsistencies across screenreaders
Done
Description
CSP Request Details
None
CSP Rejection Details
None
Potential Workaround
None
Attachments
2
has to be done after
is blocked by
Checklist
hideDetails
Assignee
Uladzislau KutarkinUladzislau KutarkinReporter
Khalilah GambrellKhalilah GambrellPriority
P3Story Points
2Sprint
NoneDevelopment Team
CorsairFix versions
Release
Sunflower (R1 2025)RCA Group
TBDTestRail: Cases
Open TestRail: CasesTestRail: Runs
Open TestRail: Runs
Details
Details
Assignee
Uladzislau Kutarkin
Uladzislau KutarkinReporter
Khalilah Gambrell
Khalilah GambrellPriority
Story Points
2
Sprint
None
Development Team
Corsair
Fix versions
Release
Sunflower (R1 2025)
RCA Group
TBD
TestRail: Cases
Open TestRail: Cases
TestRail: Runs
Open TestRail: Runs
Created August 8, 2024 at 12:07 PM
Updated January 9, 2025 at 7:21 PM
Resolved December 23, 2024 at 4:15 PM
Activity
Show:
Kathleen MooreDecember 23, 2024 at 4:15 PM
confirmed this is now working as described with NVDA
Emma_HaroyanDecember 19, 2024 at 1:46 PM
I also downloaded , will do some testing
Emma_HaroyanDecember 19, 2024 at 1:41 PM
Thanks please let me know about your test results (so I can understand if my testing tool is reliable or not)
Khalilah GambrellDecember 19, 2024 at 1:32 PM
Thanks Emma. FWIW, I use NVDA for testing https://www.nvaccess.org/download/
Emma_HaroyanDecember 19, 2024 at 1:27 PM
this one I used
Purpose: Focus handling: Review and make consistent dialog issue amongst screen readers
Summary: Recent accessibility reviews by University of Colorado at Boulder have cited dialog focus inconsistencies in the Lists app.
Lists app.
's comments in green
notes from review:
There were other instances where focus was inconsistent amongst screen readers and it moved to behind a dialog. Moving focus out of a dialog is an issue as well as it is disorienting and users who will have to find a way back into the dialog.
If the user deletes a line when creating a query, JAWS focus leaves the dialog. NVDA focus goes to the “test query” button.
When a focused element is removed from the DOM, JAWS sends focus back to the body of the document rather than keeping it where it was. To fix this, focus must be programmatically sent to correct place - to the first field of the previous line. If you know the index of the removed row, you can obtain the previous row element with something like
document.querySelector("[class^=repeatableFieldItem-]:nth-child(i)")
.. then use thegetFirstFocusable()
utility fromstripes-components
to focus the first field in that row.If the user selects “test query” button, JAWS focus leaves the dialog and goes to the top of the page. NVDA focus leaves the dialog and goes to the “inactive radio button.”
If
enforceFocus
is set totrue
on the Modal, focus should no longer travel outside of it. When the modal closes, the ‘Build query’ button should be focused. I could not reproduce the issue when the “Test query” button was pressed.