
"
+ "
Title" + title + "
Year" + year.toString() + "
";
source[i] = { html: html, title: title };
}
// initialization options - validated in typescript
// jqwidgets.ComboBoxOptions has generated TS definition
let options: jqwidgets.ComboBoxOptions =
{
source: source, selectedIndex: 0, width: '250', height: '25px'
};
// creates an instance
let myComboBox: jqwidgets.jqxComboBox = jqwidgets.createInstance(selector, 'jqxComboBox', options);
}