The Sharepoint list column is of Text type. 4 optiones, one of them being, "Another option", which makes visible a Textbox. The Data card is set to update to whatever was selected, except if "Another option" was selected, in this case it updates to what was written.
Code in Update of DataCard:
If(ComboBox1.Selected.Value = "Otra"; DataCardValue13.Text; ComboBox1.Selected.Value)
This code is what got me in other Sharepoint lists to retain whatever was selected in a similar scenario (sending combobox value to a Text column)
DefaultSelectedItems:
{'Forma de pago': Parent.Default}
Forma de pago is the Sharepoint Text column
But when I save, it only saves in the Sharepoint list, not the App. When you edit an item this will be blank. Well, the combobox will be blank. The Textbox will retain whatever was selected/written. I don't mind this happening for other cases other than "Another", as this will not be visible so, whatever. But I do need the selectedItem to be well...Selected.
Any ideas how to fix this?
Furthermore, in the Sharepoint list for some reason is saving with those bubbles that normally are for Choice columns, which makes this even more confusing...
