Hello,
I have a patch function like that:
Patch(
Obrazy_obecnosc,
Defaults(Obrazy_obecnosc),
{
Title: TextInput2.Text,
'Informacje o obrazie': First(CameraImage).Url,
'Nawigacja kod pocztowy':TheVar.address.postalCode,
'Nawigacja pełen adres':TheVar.address.formattedAddress
})
It works well, but I would love to allow to patch two more fields.
1. ImiÄ™ i nazwisko (Forename and Surname) - people field in sharepoint
2. Manager - people field in sharepoint that is chosen from ComboBox that has item property like that:
Office365Users.SearchUser({searchTerm:ComboBox1.SearchText,top:10})
How can I achieve that?
Or should I convert those fields from people to plain text?