Accessibility issue: <igx-paginator> form elements do not have associated labels #16350
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
| 
         Hello @mehmetardin Thanks for flagging this. What’s happening 
 1/ Is this a known issue? 2) Recommended approach / workaround My practical workaround is to set the ARIA attributes dynamically after render: Name the nav landmark and icon buttons: Because the paginator re-renders on interaction, I reapply this in: I’ve put together a minimal sample showing the dynamic ARIA workaround in action so you can try it directly in the browser: This result to: 
 This approach is non-breaking, keeps the current UI/behavior, and clears the Lighthouse “form elements have labels” finding; it also aligns with requirement for a programmatic name without changing visuals or localization. 3) Plan for an official fix Thanks again for raising this and helping improve accessibility.  | 
  
Beta Was this translation helpful? Give feedback.

Hello @mehmetardin
Thanks for flagging this.
What’s happening
1/ Is this a known issue?
It isn’t currently tracked as a documented paginator issue. The general accessibility docs don’t call out this specific labeling behavior. Thi…