Composite Controls E7fe3e6
Composite Controls E7fe3e6
e7fe3e60481240518d7e9e25ea7eaa6f
view on: demo kit nightly build | demo kit latest release
Composite Controls
Composite OpenUI5 controls, like Wizard or Semantic Page, are read based on the specific
behavior of their parts. Still these controls require additional ARIA labels to correctly
separate the areas within the control. Here are some examples:
• Wizard Navigation Area - needs to be marked as a navigation landmark
When creating new composite controls, you need to make sure to properly assign your
controls to regions and label these regions correctly.
<PageAccessibleLandmarkInfo
rootRole="Region"
rootLabel="Root Label"
contentRole="Region"
contentLabel="Content Label"
footerRole="Region"
footerLabel="Footer Label"
headerRole="Region"
headerLabel="Header Label"
subHeaderRole="Region"
subHeaderLabel="SubHeader Label" />
</landmarkInfo>
</Page>
</App>