I've just noticed that my drop-down lists are missing the triangle icon on the right-hand side. I've inspected the page and compared it to the examples on the main page, and I seem to be missing a <span> element
<div class="pq-select-button pq-no-capture ui-widget ui-state-default ui-corner-all pq-select-multiple" data-name="param_AdminArea" tabindex="0" name="param_AdminArea" style="width: 305px;">
<span class="ui-icon ui-icon-triangle-1-s"></span>
<div class="pq-select-text">Select options</div>
</div>
The bit in red is missing from my page. If I add it back in manually on the F12 debugger, the icon appears.
The code I'm using to add the PQSelect is this:
$(document).ready(function(){
$( "#param_AdminArea" ).pqSelect({
checkbox: true,
maxDisplay: 1,
}).on("change", function(evt){
var val = $(this).val();
$(':hidden#hidden_AdminArea').val(val);
});
});
}
Is there an option I'm missing?
Thanks in advance