Author Topic: There is a issue with the Pagination page select in IE  (Read 2132 times)

karthikkdl

  • Newbie
  • *
  • Posts: 3
    • View Profile
There is a issue with the Pagination page select in IE
« 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

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: There is a issue with the Pagination page select in IE
« Reply #1 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();
}
});
« Last Edit: June 23, 2016, 10:57:43 am by paramquery »