Dear All,
I have a SharePoint Integrated app. I can not figure out how to clear a selected value of Department combobox by OnSelect function of Site combobox. I solved to clear the default selected items based on OnSelect function of Site combobox:
Site combobox OnSelect:
UpdateContext({varEdit_ClearDepartmentDefault : true});
DataCardValue1.Selected.Value=Blank();
Department combobox DefaultSelectedItems:
If(varEdit_ClearDepartmentDefault=true,[],Parent.Default)
As you can see in the attached gif file, the DefaultSelectedItems cleared as it expected, but the selected item value is not cleared.
Could you help