1
Help for ParamQuery Grid (free version) / Re: Bug on pagination - IE
« on: November 06, 2013, 06:24:24 pm »
Well I realize that on IE7, when I put the focus on another place that my input, the pagination works . So I just set the focus to my grid when I put ENTER on the input. The code looks like this:
$('.pq-pageholder').find('input').keypress(function(e){
if(e.which == 13) {
$('#grid').focus()
}
});
I put that on the refresh method and works for me , hope that helps ^^
$('.pq-pageholder').find('input').keypress(function(e){
if(e.which == 13) {
$('#grid').focus()
}
});
I put that on the refresh method and works for me , hope that helps ^^