jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
41 lines • 1.2 kB
JavaScript
/// <reference path="../../../jqwidgets-ts/jqwidgets.d.ts" />
function createDropDownList(selector) {
var source = [
"Affogato",
"Americano",
"Bicerin",
"Breve",
"Cafe Bombon",
"Cafe au lait",
"Caffe Corretto",
"Cafe Crema",
"Caffe Latte",
"Caffe macchiato",
"Cafe melange",
"Coffee milk",
"Cafe mocha",
"Cappuccino",
"Carajillo",
"Cortado",
"Cuban espresso",
"Espresso",
"Eiskaffee",
"The Flat White",
"Frappuccino",
"Galao",
"Greek frappe coffee",
"Iced Cofee",
"Indian filter coffee",
"Instant coffee",
"Irish coffee",
"Liqueur coffee"
];
// initialization options - validated in typescript
// jqwidgets.DropDownListOptions has generated TS definition
var options = {
source: source, selectedIndex: 1, width: '200', height: '25'
};
// creates an instance
var myDropDownList = jqwidgets.createInstance(selector, 'jqxDropDownList', options);
}
//# sourceMappingURL=typescript-dropdownlist.js.map