Skip to main content
Community site session details

Community site session details

Session Id :
Power Pages - Customize & Extend
Unanswered

Remove aria-readonly property from a subgrid table in a Power Pages form

(0) ShareShare
ReportReport
Posted on by Microsoft Employee
I used the MSFT 'Accessibility Insights for Web' browser extension to check my power Pages site for accessibility issues.
 
It flagged multiple instances of 'ARIA attribute is not allowed: '. Apparently having the aria-readonly attribute in a table element is an accessibility issue. Power Pages adds this property by default.
 
For standard tables I was able to resolve the issue by adding the following Javascript to the power pages list:
 
$(document).ready(function (){
    $(".entitylist.entity-grid").on("loaded", function () {
        $(this).children(".view-grid").find("[aria-readonly]").each(function (){
            $(this).removeAttr("aria-readonly");
        });
    });
});
However, I have a form that includes a subgrid. This approach doesn't work for the form subgrid.
 
Any suggestions?
 
Categories:

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

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Pages

#1
Lucas001 Profile Picture

Lucas001 60 Super User 2025 Season 2

#2
Fubar Profile Picture

Fubar 55 Super User 2025 Season 2

#3
surya narayanan Profile Picture

surya narayanan 35

Featured topics