Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dw3Peter

Pages: [1]
1
Hi,

I'm planning to use a pqSelect element together with other native html select elements and would like the user experience regarding TAB key to be the same for pqSelect as for a native html select.

My humble whish is therefore if you could implement TAB key in pqSelect to select current option, close drop down and tabulate to next element (the same as a native html select does)?

Thanks!

2
Hi,

I'm new to pqSelect.

I can't get keyboard navigation (up/down) to work when using search: false
Attached is image from the example on your site, I have added ", search: false"

This code on your own site will reproduce the problem (I have added ", search false") ...
//initialize the pqSelect widget.
$("#select0").pqSelect({
    singlePlaceholder: 'Select Country',   
    radio: true //adds radio buttons
/* the problem */ , search: false // Keyboard navigation not working   
}).on("change", function(evt){
    var val = $(this).val();
    $("#selected_option0")
        .text("Selected option: "+val);
}).pqSelect( 'open' );

Pages: [1]