Hello,
What I have on my page are a bunch of div names that are different, along with same the same element id’s that pull from the same source list
I am loading my dropdownlists using this format below,
var keytopics = [
“”,
“N/A”,
“Academic”,
“Accident Statistics”,
“Accessible Vehicles”,
“Advanced Technology”,
]
var w = ‘205px’; var h = ’20px’
$(‘div[name=”One”] #keytopic’).jqxDropDownList({source: keytopics, selectedIndex: 0, width: w, height: h });
$(‘div[name=”Two”] #keytopic’).jqxDropDownList({source: keytopics, selectedIndex: 0, width: w, height: h });
$(‘div[name=”Three”] #keytopic’).jqxDropDownList({source: keytopics, selectedIndex: 0, width: w, height: h });
What I find is that everytime I create a new div with the dropdownlist, the previous other two stop working and no longer don’t display my source list. Is this a bug?
Cheers,
Jay
However,