I have setup a combo box that opens a list of items. The issue is that only one item at a time can be selected. My question is how can I get these elements to display as checkboxes so that the user can select as many items as they want WHILE the list still functional as a drop down menu?
- Create a new user widget with a checkbox and text
- Add an exposed string variable and set it to text block when the widget constructed
- In the widget containing the combo box override OnGenerateWidget function:
- Add items to combobox:
Result:
2 Likes
Thank you very much for the example. I’ll try that.
This worked perfectly. Thanks again.