How to create combobox that can be dropdown as well as freely entered (Traditional web/ Reactive web)
Hi,
You can use Outsystems UI, Dropdown Search Widget for this.
https://success.outsystems.com/Documentation/11/Developing_an_Application/Design_UI/Patterns/Using_Mobile_and_Reactive_Patterns/Interaction/Dropdown_Search
Thanks
Hi @Toto
Thank you for your reply
From this Dropdown Search Widget ,I can able to search the value from the list
But I want input and save the value and select the value on the combobox.
Do you know how to do it?
Hi @Dilmi Hashara Amarasingha ,
You can use Outsystems UI, Dropdown Widget for this in Traditional
https://success.outsystems.com/Documentation/11/Developing_an_Application/Design_UI/Patterns/Using_Traditional_Web_Patterns/Controls/Dropdown
First you have to create simple page ( entering input and save) and this entity you can use in above link steps.
Hi @Purva Kumbhar
I can't access above link
Please check https://success.outsystems.com/Documentation/11/Developing_an_Application/Design_UI/Patterns/Using_Traditional_Web_Patterns/Controls/Dropdown?_gl=1*1bfcfum*_ga*OTc2MDQyMjc0LjE2MjMyOTk1NTI.*_ga_ZD4DTMHWR2*MTYyMzI5OTU1My4xLjEuMTYyMzI5OTY0NC42MA..
Hi ,
You can also refer this link https://success.outsystems.com/Documentation/11/Developing_an_Application/Design_UI/Inputs/Choose_One_Value_from_a_List
please let know are you able to access above link and any other help
I can access that link
But I want to do below thing
Hi,While using dropdown or dropdown select, we usually store the ID of the value that we select in the dropdown.
So, it is not possible to enter a free text, if your desired value is not present in the dropdown.
The work around for this is to have a value, lets say 'Others' in the set of dropdown values, and if Users select that option in dropdown, you can make them enter a free text in a New input widget (which will only be shown, if 'Others' value is selected in dropdown) that can be stored in a separate attribute of same entity (that means, that extra attribute will only have data, for those entries where 'Others' option is selected in the dropdown).
Hope this helps.