Announcements
hey all
In a model-driven application on a form, I'm using an editable subgrid (power apps grid component). I need to refresh the subgrid every time a change occurred.
Tried to solve this using JS, but could not achieve to refresh subgrid from change within the editable subgrid. It works if I change a field value on the form for example.
Anybody having a solution for this?
This works when called from field outside of subgrid, but not if called from onChange in subgrid.
function refreshSubgrid(executionContext) {
var formContext = executionContext.getFormContext();
var subgrid = formContext.getControl("subgrid_name");
if (subgrid) {
subgrid.refresh();
}
}
appreciate your help!
André Arnaud de Cal...
293,374
Super User 2025 Season 1
Martin Dráb
232,532
Most Valuable Professional
nmaenpaa
101,158
Moderator