A collection control, Multi-select enables the developers to add drop-down list with multiple selection to their applications. The control can be easily bound to a data source, and has fully customisable header. Users can specify the maximum number of selected items to be displayed in the header, and also customize the header content.
| Isml.js |
Copy Code
|
|---|---|
myapp.SelectMultiSelect.Countries_render = function (element, contentItem)
{
var input = new c1.cba.Select($(element), contentItem);
};
|
|