Reputation: 11
Recently i customized my SharePoint form using PowerApps. After unlocking and customizing some of my columns, the columns converted into custom cards and have no entry into my original SharePoint List columns. So When i fill out the form and submit, those custom column don't update on SharePoint column tables. How do i get around this and ensure my custom cards field reflect on my original SharePoint Column tables when submitted?
POWER APP COLUMS CONVERTED TO CUSTOM CARDS COLUMS NOT BEEN UPDATED IN THE LIST
Upvotes: 0
Views: 2282
Reputation: 4415
As soon as you unlock a DataCard it becomes "Custom". You are likely missing a "Submit" button or the like on your Customized Sharepoint Form. Add a button and set its OnSelect property to SubmitForm(SharePointForm1)
.
Upvotes: 0
Reputation: 26
Can you check the following properties to see if you somehow ended up modifying them when you unlocked the data card?
Under DataField you should see the name of the field the card is mapped to.
In PowerApps Studio also validate that Default is also set to ThisItem.[DataField from step above] and Update is set to Value(DataCardValue[N].Text).
Upvotes: 1