Combobox
Last updated
Was this helpful?
Last updated
Was this helpful?
Combobox is a standard input component that allows the user to pick one of the options in it's drop-down list.
To see a live sample of the component you can go .
Example:
In order to get a drop down menu with orders' ship countries, the followings settings should be made:
Like most components, Comboboxes have events, which allow you to execute some logic when something happens in the UI. Of course, the most common event for a combobox is the onDataChange
event, which is triggered when the combobox is clicked and the value is changed.
Comboboxes, like many components, can be modified at runtime through code. Below are a few examples of controlling a Combobox from code.
You can easily change the enabled
state of a Combobox at runtime.
Example:
You can easily change the visible
state of a Combobox at runtime.
Example:
Like most components, a Combobox has API methods which can be called from code. Below is an example of common API calls.
Example:
The following articles are recommended for additional reading
In the , drag the Combobox component from the Pallet onto the form, then select a dataprovider and a valuelist.
If the component does not appear in the pallet, it means you do not have the Bootstrap Components package installed. Click "Get more components" at the top of the pallet to open the and install it.
Comboboxes, like all components, have properties that can be modified at design time to set the appearance and behavior of the component. Select the label in the to see a list of properties in the . Below are some common properties and how to set them at design time.
See the reference docs for for a complete list of its .
Combobox's dataprovider can be set after the component has been added to the form or by setting it in property, found in the .
Combobox's can be set it in property, found in the and it should match the set .
set shipcountry
as the Combobox
in case it doesn't exist, create a using Table values and shipcountry
column as dataprovider
set the countries list in property of the Combobox
To Handle the event, double-click the value for the property in the . You will see the . You'll have the option to select an existing Method or create a new Method. The method will be called when the Combobox's onDataChange
event is fired and the object will be passed to it.
See the for a comprehensive list of
You can easily add a style class to a Combobox using the method.
See the for a complete list of programmable and .