
Hello everyone,
I'm trying to do default selected items for a combobox from a sharepoint person column, however for some reason, it's coming up blank and this wasn't the way it was before now. It started when I changed the items property of my combobox from Office365Groups.SearchUser to Office365Groups.ListGroupMembers...
In the default selected items property of my combobox, I have varCurrentRecord.FirstApprover but when I try to add ".displayname" it gives me the red squiggly line and when I remove the ".displayname" it comes up blank. Am I missing something?
The items property of my combobox is Office365Groups.ListGroupMembers("object id", {'$top': 100}).value
Never mind. I figured it out. I should have used [varCurrentRecord.SecondApprover.DisplayName]. It was expecting a table value.