I have a list in one of the pages in my power pages portal.
This list is connected to a custom table called cra47_role and is showing all the data in that table. I want this list to be filtered by a lookup field and only show those data related to that record when the page loads.
I do not want to use the metadata filter as I have to choose filter and besides my filtering criteria would change overtime and that lookup field would have more data in its own table and I do not want to go back to portal management and add options to the filter.
I can clear the list and make my own list by addressing this in documentation
$(document).ready(function (){
$(".entitylist.entity-grid").on("loaded", function () {
$(this).children(".view-grid").find("td[data-attribute='accountnumber']").each(function (i, e){
var value = $(this).data(value);
// now that you have the value you can do something to the value
});
});
});
but then I want to have the drop down action configuration buttons and their functionality like editing and deleting a record.
is there a way to filter the data input of the list?
I have the same question (0)