Open GoogleCodeExporter opened 8 years ago
Did you figure out your problem yet?
Original comment by jeff.johnston.mn@gmail.com
on 7 Jun 2011 at 3:42
Nope I did not :(
Any hints or can we have this case assigned and worked on? :)
Original comment by Inventor...@gmail.com
on 8 Jun 2011 at 1:01
I think this is very close to issue 256.
http://code.google.com/p/jmesa/issues/detail?id=256
I am not able to reproduce this. You are going to have to debug this locally.
There is not much to it though. The place to look is in the jquery.jmesa.js
file at the createDroplistDynFilter() method.
Original comment by jeff.johnston.mn@gmail.com
on 9 Jun 2011 at 3:03
I had almost the same issue when i used dynFilters.
My jmesa table updates every 10 seconds by making an ajax request, so if the
filter is used when the request is sent, then the table updates but the filter
cannot be accessed anymore (you cannot click on the filter to access the
filter's input field).
After a short debugging i realized that the problem is from the
createDynFilter() method, the dynFilter is not set to null if it is opened
while the request is sent.
So i needed to check if the filter is visible before returning the created
dynFilter, or else create a new one.
Line 456:
if (dynFilter) {
// return only if dynFilter is visible
// In my case i had just one filter so i checked:
// document.getElementsByClassName("dynFilter")[0].style.overflow == "visible"
return;
}
Original comment by tothsanyi.mail@gmail.com
on 17 Nov 2011 at 10:30
Original issue reported on code.google.com by
Inventor...@gmail.com
on 30 May 2011 at 9:08