I built a repeating table with a multiselect combobox...Item property --Choices(permission.Jobtitle).
I have 2 issues.
- when i patch to my collection it only holds 1 of the selected items
- The final submit button dosent work at all.
I have a save button in each gallery item that patches the current items and create a new line. the onselect formula is
Patch(col_Add, ThisItem, {NewJobtitle:Multiselectcombobox.selected.value,---------I also tried using SelectedItems
FName:Textbox1.Text})
On the final submit button i have
ForAll(Col_Add, Patch(Permission,Default(Permission),
{Name:FName,
JobTitle:{Value:NewJobtitle})----------------------------This is not working at all.
Any help would be much appreciated.