The Combo Box Form Control

The oxy_combobox built-in form control is used for providing a graphical user interface object that is a drop-down list of proposed values. This form control can also be used for a combination of a drop-down list and an editable single-line text field.

The oxy_combobox form control supports the following properties:

Combo Box Form Control

comboBox:before {
    content: "A combo box that edits an attribute value. The possible values are provided from CSS:"
        oxy_combobox(           
            edit, "@attribute",
            editable, true,
            values, "value1, value2, value3",
            labels, "Value no1, Value no2, Value no3");
}
Note: You can use the Content Completion Assistant in the CSS or LESS editor to easily insert a sample of the form control by selecting the corresponding code template. The form control code templates are displayed with a symbol in the content complete list.
Tip: To insert a sample of the oxy_combobox form control, invoke the Content Completion Assistant by pressing Ctrl Space (Command Space on OS X) and select the oxy_combobox code template.