ParamQuery grid support forum

General Category => Bug Report => Topic started by: juroinstruments on September 01, 2021, 11:35:51 am

Title: select event of autoCompleteEditor in column
Post by: juroinstruments on September 01, 2021, 11:35:51 am
on 8.0 version custom editor demo page, select event of 'autoCompleteEditor' is not fired when 'enter' key down on drop down list.
on 6.0 demo page, it works well.
the test code is below.

Code: [Select]
        function autoCompleteEditor( source ) {
            return function (ui) {
                ui.$cell.addClass('ui-front');//so that dropdown remains with input.           

                //initialize the editor
                ui.$editor.autocomplete({
                    //appendTo: ui.$cell, //for grid in maximized state.
                    source: source,
                    position: {
                        collision: 'flipfit',
                        within: ui.$editor.closest(".pq-grid")
                    },
                    selectItem: { on: true }, //custom option
                    highlightText: { on: true }, //custom option
                    minLength: 0,
    select: function(){ //not fired when enter key down
console.log("select event");
    },
                }).focus(function () {
                    //open the autocomplete upon focus               
                    $(this).autocomplete("search", "");
                });
            }
        }
Title: Re: select event of autoCompleteEditor in column
Post by: juroinstruments on September 23, 2021, 10:42:13 am
When could you reply to this post?
Title: Re: select event of autoCompleteEditor in column
Post by: paramvir on September 23, 2021, 04:24:47 pm
the issue is reproducible and would be resolved in upcoming version.
Title: Re: select event of autoCompleteEditor in column
Post by: paramvir on October 06, 2021, 09:09:23 am
this issue is fixed in v8.1.1