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.
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
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.
Lucas001
60
Super User 2025 Season 2
Fubar
55
Super User 2025 Season 2
surya narayanan
35