Passing form data that is defined in combobox defaultselecteditems
I have created a form that is connected to a Sharepoint list called: “Win”
The Sharepoint list holds a.o. a multiselect column called ‘Solution Category’
I have a multiselect combobox (cmbSolCat_1) that is part of this form.
– The combobox items list gets its data from an single column excel table called SolutionCat
– The headername of the table is called ‘Customer Solution’
The defaultselecteditems property of this combobox is defined as: ThisItem.’Solution Category’
– The datacard Update property is: ForAll(cmbSolCat_1.SelectedItems, {Value:’Customer Solution’})
All of the above works well if I select some of the items in the multiselect combobox.
If I would edit an existing entry, with multiple items selected, it would show me those items. If I now would submit my form with no changes, it will not pass the items that were listed from the defaultselected property. Instead, it will blank out all everything in that cell of the sharepoint list.
Appreciate your insight on how to pass on defaultselecteditems in a multiselect combobox.
I have created a form that is connected to a Sharepoint list called: “Win”The Sharepoint list holds a.o. a multiselect column called ‘Solution Category’ I have a multiselect combobox (cmbSolCat_1) that is part of this form.- The combobox items list gets its data from an single column excel table called SolutionCat- The headername of the table is called ‘Customer Solution’The defaultselecteditems property of this combobox is defined as: ThisItem.’Solution Category’- The datacard Update property is: ForAll(cmbSolCat_1.SelectedItems, {Value:’Customer Solution’}) All of the above works well if I select some of the items in the multiselect combobox. If I would edit an existing entry, with multiple items selected, it would show me those items. If I now would submit my form with no changes, it will not pass the items that were listed from the defaultselected property. Instead, it will blank out all everything in that cell of the sharepoint list. Appreciate your insight on how to pass on defaultselecteditems in a multiselect combobox. Read More