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 / Javascript to check al...
Power Pages
Answered

Javascript to check all cells are yes in a table and remove class from button

(0) ShareShare
ReportReport
Posted on by 59

Hi

 

Any help, guidance, is this right place for javascript questions for portal, i hope so.

 

I have an entity list and one column has a yes/no response .  I am trying to get it so that once all rows are completed and the answered column is all yes's then remove a class from a button so it can be clicked.

 

entitylist.PNG

 

I have this code already that colours the rows green when they are yes , but if i replace $(this).parent().addClass('success'); with $('mybtn).removeClass('disabled');  it would make the button active when any are yes

 

$(document).ready(function (){
$(".entitylist.entity-grid").on("loaded", function () {
$(this).children(".view-grid").find("td[data-attribute='py3_yescheck']").each(function (){
// do something with each row
if ($(this).text() == 'Yes') {
$(this).parent().addClass('success');
}
});
});
});
 

 

 

Categories:
I have the same question (0)
  • Verified answer
    justinburch Profile Picture
    Microsoft Employee on at

    Hi @sbonera,

    You need to identify the output of all iterations in the each statement. Consider the following:

    $(document).ready(function (){
     $(".entitylist.entity-grid").on("loaded", function () {
     var isSuccess = true;
     $(this).children(".view-grid").find("td[data-attribute='py3_yescheck']").each(function (){
     if ($(this).text() == 'No') {
     isSuccess = false;
     }
     });
     if (isSuccess) {
     $('mybtn).removeClass('disabled');
     }
     });
    });

    Please note that there are fundamental flaws to this approach: if your grid becomes paginated (there is more than one page), this will only look at the visible page. This means that if you have sorting enabled, they can intentionally sort to hide the "No" responses" and enable the button.

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Pages

#1
Mohsin Ali Profile Picture

Mohsin Ali 33

#2
sannavajjala87 Profile Picture

sannavajjala87 28 Super User 2026 Season 2

#3
11manish Profile Picture

11manish 22 Super User 2026 Season 2

Last 30 days Overall leaderboard