Hi all
Currently I use the Patch function with the Form.Updates but it's not working correctly. Somehow some Infos of the SP List entry just disappears when I patch with the Form.Updates. Without it's working correctly I just can't add an Attachment.
The entries that disappear are: Barcode, Category, Status,
On the OnSelect properties on the Save button in the top right corner this code is attached:
Patch(
Assets,
Gallery1.Selected,
{
Barcode: Label2_2.Text,
Title: TextInput1_1.Text,
Category: {
'@odata.type': "Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Value: Dropdown1_1.Selected.Value
},
Maintain: DataCardValue1_4.SelectedDate,
Location: {
'@odata.type': "Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Value: Dropdown3_1.Selected.Value
},
Borrower: Blank(),
Time: Blank(),
Comment: Blank(),
Status: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: 1,
Value: "Available"
}
},
EditForm1_2.Updates;
);
Navigate(ConfirmScreenAdmin);
UpdateContext({ShowPopupReset: false})
Thanks for any help!
Best
Lukas

Report
All responses (
Answers (