Hi,
I’m getting an error with the dropdown list.
Uncaught TypeError: Object # has no method ‘aria’ in jqxdropdownlist.js
I’m using version 2.7.0.
within a jqxWidow’s initContent function property. I’m creating a dropdown. Even this this simple example it throws the error above:
$("#selectionModal").jqxWindow({ width: '500px', height: '200px', resizable: false, autoOpen: false, isModal: true, modalOpacity: 0.3, cancelButton: $("#cancelSelection"), initContent: function () { var separationData = [ 1, 2, 3 ]; $("#tableDropdownList").jqxDropDownList({ source: separationData, width: '200px', height: '25px', }); } });