Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - luis.batista

Pages: [1]
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  :o. 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 ^^

2
Help for ParamQuery Grid (free version) / Bug on pagination - IE
« on: October 17, 2013, 02:43:04 am »
Hi there...

I know that legacy browsers are complicated to talking about.. but i'm using PQGrid on a project that must be compatible to IE 7, and it works perfectly, just a spot bother me...
When I put a number of a page on the pagination input and I tap 'enter', dont change the page, but just when I'm using the keyboard, if I click on the 'next' or 'preview' button it works

3
First of all , sorry for the basic english ok ?

So ... I'm using PQGrid on my project and I'm using flexHeight: true on that.
With this parameter my vertical scroll bar is missing and thats ok ... the problem is when I use the mouse scroll over my grid... the window don't scroll, instead that, the refresh event of the grid is called and the window stay still ... There is a parameter or something that I could do about that ?

Pages: [1]