How to display elements as checkboxes?

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?

You should override OnGenerateWidget function in your combo box

  1. Create a new user widget with a checkbox and text

  1. Add an exposed string variable and set it to text block when the widget constructed

  1. In the widget containing the combo box override OnGenerateWidget function:

  1. Add items to combobox:

image

Result:

image

My Products

2 Likes

Thank you very much for the example. I’ll try that.

This worked perfectly. Thanks again.