Hi Community,
Has anyone figured out how to patch multiple selected items in a grid / sub grid using the new Power Fx commanding for Model-Driven apps?
Following this guide, I'm able to patch a single selected contact record in a subgrid (subgrid is on the account form). However, selecting multiple records does not execute the patch function. I've tried wrapping the patch in a for all using self.selected.allitems however that didn't work.
This is the selected record patch statement, works fine for a single record.
Patch(Contacts,
Self.Selected.Item,
{
'Mobile Phone': 123456,
'Last Name': "Doe"
})
I realise this is still in preview, however seeing if folks have figured this out?