web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Pages / Rich text Accessibility
Power Pages
Suggested Answer

Rich text Accessibility

(2) ShareShare
ReportReport
Posted on by

I'm experiencing accessibility issues with the rich text editor in my Power Pages site. Although these editors are provided out-of-the-box by Microsoft and are expected to meet accessibility standards.

I have limited control over their configuration. The specific problems are:

  1. Tab Index Issue: The rich text editor has a tabindex of -1, preventing keyboard users from focusing on it.

  2. Screen Reader Inaccessibility: Screen readers are unable to read the content within the rich text editor.

I have not found specific documentation addressing these problems.

Has anyone encountered similar issues or found solutions to enhance the accessibility of the rich text editor in Power Pages?

Thanks for the help!

Categories:
I have the same question (0)
  • Suggested answer
    SaiRT14 Profile Picture
    1,990 Super User 2025 Season 1 on at
     
    Use JavaScript or jQuery to programmatically change the tabindex of the rich text editor once the page is loaded.  $(document).ready(function() {
        $(".rich-text-editor-class").attr("tabindex", "0");
    });
     
    Add appropriate ARIA roles and labels to the rich text editor to make it screen reader-friendly. $(document).ready(function() {
        $(".rich-text-editor-class").attr({
            "role": "textbox",
            "aria-label": "Rich Text Editor",
            "aria-multiline": "true"
        });
    });
     
    Consider using a custom, accessibility-friendly rich text editor if the out-of-the-box one cannot meet your requirements.
     
    thanks

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Pages

#1
DP_Prabh Profile Picture

DP_Prabh 41

#2
oliver.rodrigues Profile Picture

oliver.rodrigues 31 Most Valuable Professional

#3
Hammed Profile Picture

Hammed 22

Last 30 days Overall leaderboard