I have a SP list and canvas app, My data cards have text input and dropdown selection, I only need to see text input in sharepoint list and that works fine but when users edit form I want the selected value of the dropdown to be displayed.
When I submit form here is the code: there is 148 dropdowns total but I shortened it for this example.
SubmitForm(EditForm1) ;
Collect(DropDownSelections, {
SQ1 :sDropdown1_1 .SelectedText,
SQ2 :sDropdown1_2 .SelectedText})
I've tried on start of application: Thinking this would make a difference
LoadData(DropDownSelections, "DropDownSelections")
The default property of the dropdown I have tried so many scenarios its garbage to post. But here goes.
DropDownSelections(sDropdown1_1.SelectedText)
A simple snapshop of the dataCard.

The application works fine except that when user edits the form I want the previous selected dropdown selection to show also.