Hi Folks,
In one of the entity list I would like to replace the ahref text to display an icon. Here is my attempt using jQuery
$(document).ready(function () {
console.log(555, "console loading");
$(".entitylist.entity-grid").on("loaded", function () {
$(this).children(".view-grid").find("td[data-attribute='cra0d_app']").each(function (i, e){
console.log(222, "name of column loading");
var value = $(this).data(value);
console.log("666value Var", value);
if(value.value == "https://testportal.powerappsportals.com/poc/testApp/")
{
console.log(444, "condition triggering");
// $("a").text("Show this text");
}
else{
console.log(444, "Not triggering");
}
});
});
});
The above code is changing all <a> tag text to "Show". How do I replace only for the Logical name (cra0d_app) column only.