Hi,
I’m trying to use this library create a simple form for input some data in a database.
I need a dropdownList for select a category but when I set this object the JS console return me this message.
SyntaxError: unreachable code after return statement
I don’t think had any mistake, is exactly write the code of the tutorial.
var source = [
"1 Squadra",
"Under 18",
"Under 16"
];
$("#team").jqxDropDownList({ source: source, selectedIndex: 1, width: '200', height: '25'});
It say the error is in jqxlistbox.js, where is my mistake?