I have seen previous posts about this including replies from @WarrenBelz so understand this is a known issue but I cannot get the items property of the combo box to display the value after the patch. The patch to SP list is working fine.
The onchange propertys of my gallery fields is as follows:
If(ThisItem.ID in colVehExcUpdates.ID,
Update(colVehExcUpdates,
LookUp(colVehExcUpdates, ID = ThisItem.ID),
{
ID: ThisItem.ID,
ExceptionReason: VehExcReason.Selected,
VORReason: VORReason.Selected,
Comments: VehExcComments.Value,
ExceptionDate: VehExcStart.Value,
ExceptionEndDate: VehExcEnd.Value
}
),
Collect(colVehExcUpdates,
{
ID: ThisItem.ID,
ExceptionReason: VehExcReason.Selected,
VORReason: VORReason.Selected,
Comments: VehExcComments.Value,
ExceptionDate: VehExcStart.Value,
ExceptionEndDate: VehExcEnd.Value
}
))
I have a save icon to trigger the patch:
If(
CountRows(colVehExcUpdates) > 0,
Patch(
'IKEA Vehicle Exceptions',
colVehExcUpdates
);
Notify(
"Success",
NotificationType.Success
)
);
Clear(colVehExcUpdates);
I have set my defaultselecteditems of the combo box to {ExceptionReason: ThisItem.ExceptionReason.Value} but it still shows blank after I trigger the save patch