canvas app
2 TopicsAdd, update, or delete images in SharePoint/Microsoft Lists using Power Apps
New Feature: Add/update image columns in #SharePoint/ #MicrosoftLists using #PowerApps Configure SharePoint form control to add pictures/images Using Patch() function to add/update image Supported Image formats Limitations of the feature Read more at: Add, update, or delete images in SharePoint/Microsoft Lists using Power AppsHow do I stop SharePoint customized canvas app newform.aspx from loading first record?
I recently noticed that a customized PowerApp Canvas App will load the first record of a list instead of presenting the user with the new form as expected. I suspect it has to do with the default SharePointForm->FormScreen->item logic: If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First([@<list name>]),SharePointIntegration.Selected) But if I change the logic to remove the "First" item, it will still load the first record. It's random and refreshing the browser is a workaround which will correctly load the "newform." I can replicate the issue on any site collection, in any customized form. The form doesn't even need to have any advanced customization to replicate. Just publishing and replacing the SharePoint form with an unaltered Canvas App causes the issue. Btw - saving the form with the "First" record will alter the record and does not create a new item.Solved