i am just running very very basic demo of drop down list. and its not showing up the listbox.. below is the code.
this is very basic demo that tool from samples.. except that i changed the path where css and js are located.. firebug does not give any error or complains about missing js file…
what am i missing ?
The jqxDropDownList represents a widget that contains a list
of selectable items displayed in a drop-down.
$(document).ready(function () {
var theme = getTheme();
var source = [
“Affogato”,
“Americano”,
“Bicerin”,
“Breve”,
“Café Bombón”,
“Café au lait”,
“Caffé Corretto”,
“Café Crema”,
“Caffé Latte”,
“Caffé macchiato”,
“Café mélange”,
“Coffee milk”,
“Cafe mocha”,
“Cappuccino”,
“Carajillo”,
“Cortado”,
“Cuban espresso”,
“Espresso”,
“Eiskaffee”,
“The Flat White”,
“Frappuccino”,
“Galao”,
“Greek frappé coffee”,
“Iced Coffee”,
“Indian filter coffee”,
“Instant coffee”,
“Irish coffee”,
“Liqueur coffee”
];
// Create a jqxDropDownList
$(“#jqxWidget”).jqxDropDownList({ source: source, selectedIndex: 0, width: ‘200’, height: ’25’, theme: theme });
});