| Cloud Business App Edition > Wijmo Control Extensions > Controls > Selection > ListBox |
A collection control, ListBox displays a list of plain text or HTML items and enables users to select one or more of these items. Users can populate this list by binding the control to a data source. The control can be easily customized to enable multiple-selection.
| Example Title |
Copy Code
|
|---|---|
myapp.SelectListBox.Countries_render = function (element, contentItem)
{
var input = new c1.cba.Select($(element), contentItem);
};
|
|