ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: karthikkdl on June 22, 2016, 04:06:40 pm

Title: There is a issue with the Pagination page select in IE
Post by: karthikkdl on June 22, 2016, 04:06:40 pm
Hello,

   There is a issue with the Pagination on Page Number the enter is not working as it behaves on the other Browsers
Title: Re: There is a issue with the Pagination page select in IE
Post by: paramvir on June 23, 2016, 10:31:03 am
Currently it's a known issue in IE as it doesn't fire change event on enter key.

You could use this workaround fix.

Code: [Select]
$('.pq-grid-bottom').on("keypress", "input[type='text']", function(e){
if(e.which == 13) {
this.blur();
}
});