[SF][A11y][0.26.1][DynamicPageTitle] Screen reader issues of actions overflow menu button
Describe the bug When user opens the actions overflow ellipsis button menu of DynamicPageTitle
- observe when opened, there is no indication of opening
- as we navigate through the options, the item count is also missing
To Reproduce Steps to reproduce the behavior: Environment: Windows, Chrome, JAWS 2022
- Go to https://sap.github.io/ui5-webcomponents-react/?path=/docs/layouts-floorplans-dynamicpage--default-story
- Click on actions overflow button of DynamicPageTitle
- Tab navigating through the popup menu items
- Inspect the JAWS speech history, theres no indication of overflow popup menu, and item count of menu items is also missing
Expected behavior
Refer to WCAG actions menu button:

UI5 Web Components for React Information
@ui5/webcomponents version: 0.26.1
@ui5/webcomponents-react version: 1.5.0
Operating System: Windows
Browser: Chrome
What is the plan on fixing this issue? Priority of medium is ok. In agreement with Stoehr.
Hi @ksblklu
I compared our implementation with the one of SAPUI5 and our announcements are not 100% equal, but similar enough in my opinion. E.g. with SAPUI5 there is also no item count and if the popover is open there is an "dialog" announcement with NVDA, but none with JAWS (which seems faulty to me, since the role is set to dialog).
Since we are following the UI5 implementation, I think our current implementation is correct.
If you want to change the aria announcements you can probably do that by leveraging the actionsToolbarProps
or navigationActionsToolbarProps props of the DynamicPageTitle component. There you can pass all allowed props of the Toolbar component.
Hi @Lukas742
Thanks for the information! For the item count announcement of buttons inside Toolbar, onOverflowChange method could solve this issue. But in SAPUI5 Toolbar example, we saw there is an item count announcement implemented in Toolbar component overflow menu. Can we align our Toolbar component to UI5 Toolbar?

Hi @ksblklu
The SAPUI5 Toolbar component has no overflow capabilities, so the item announcement is coming from the custom implemented ActionSheet (see implementation details) and not the Toolbar itself. We based our toolbar on the SAPUI5 OverflowToolbar
Hi @Lukas742
Thanks for the details, I'll use the actionsToolbarProps to customize the aria announcement of DynamicPageTitle actions toolbar.