I know that there is a loaded event for lists in PAP that can be fetched with JS,
$(document).ready(function () {
$(".entity-grid.subgrid").on("loaded", function () {
//do something with list rows
});
});
but is it also possible to reload the list dynamically with javascript? (Sorry if this question is totally out of scope for PAP, I am a beginner.)