Hello everyone,
In a canvas app, I have a gallery and an edit form that updates a SharePoint list, one of the fields in this list is a text field, but in the form I want to add a drop menu selection instead of a text box, so when a user updates this text field from the form he will have the menu to select preset items from this menu.
Is that possible?
Thanks
Solved! Go to Solution.
Unlock the card and hide the textinput box. Put your dropdown in the card and then click on the card and select the Update property. Delete the reference to the textbox and replace it with Dropdown.Selected.Value
Replace dropdown in the above with the actual name of your dropdown.
Unlock the card and hide the textinput box. Put your dropdown in the card and then click on the card and select the Update property. Delete the reference to the textbox and replace it with Dropdown.Selected.Value
Replace dropdown in the above with the actual name of your dropdown.
Unlock the card and hide the textinput box. Put your dropdown in the card and then click on the card and select the Update property. Delete the reference to the textbox and replace it with Dropdown.Selected.Value
Replace dropdown in the above with the actual name of your dropdown.
Yes, you can make this work properly by modifying the Update property of the datacard associated with the text field to something like:
Dropdown1.Selected.Text
Depending on how the dropdown's items are populated, sometimes you use .Value or .Result instead of .Text. Let the Intellisense feature help you complete that part of the argument.
Hope that helps,
Bryan
Thank you all this works!
User | Count |
---|---|
255 | |
107 | |
85 | |
51 | |
43 |