ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started 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
-
Currently it's a known issue in IE as it doesn't fire change event on enter key.
You could use this workaround fix.
$('.pq-grid-bottom').on("keypress", "input[type='text']", function(e){
if(e.which == 13) {
this.blur();
}
});