
Announcements
Hi,
I am using check box where I have assigned collection on screen and given collection name on combo box items property.
In my list there are 5 data to select as skills and I want to add random skills also that is not given in the list
Whenever I'm typing skill name it's adding in list then again, I have to select to add it as other given list in collection is selecting it but that added additional skill is not adding.
I want to add random skills in combo box.
how can I achieve that in combo box please help me in this.
Thanks in advance.
Hi @zeyaul-hoda ,
I've made a test for your reference:
1\I assume there is a collection:
ClearCollect(TempCollection,["Value1","Value2","Value3"])
2\Add a combobox (ComboBox5) and set it's items property to:
TempCollection
3\Add a '+' icon and set it's OnSelect property to:
Collect(TempCollection,ComboBox5.SearchText)
Result:
Best Regards,
Bof