Tony did you makeit to do the method expand all?
Did anyone test it fully with jQuery 1.4 and jQuer UI 1.8rc1 ?
Did you include backwards compatibility plugin for jQuery 1.3 (to be used with jQuery 1.4)?
Problem persist:
if user switch tab (hide div with jQgrid) when loading box is active and goes back to same tab, loading box stays active without text.
Solution:
in grid.base.js in function: beginReq – change:
$(”#load_” + ts.p.id).show();
to
$(”#load_” + ts.p.id).show().css('visibility', 'visible');
in grid.base.js in function: endReq – change:
$(”#load_” + ts.p.id).show();
to
$(”#load_” + ts.p.id).show().css('visibility', 'hidden');
I tried with css left -10000px but no success, i woluld alsaw add contition for IE 6,7,8 (comp. mode).
Tony: is there option to extend functions: beginReq, endReq
Problem is in IE 6,7, 8 comp. mode – full description:
http://www.positioniseverything.net/explorer/ienondisappearcontentbugPIE/index.htm
I found solution:
Always initialize tabs first or use callback event like “show”!
Don't use setTimeout because off slow computers & visual anomalies.

found a solution 
replace
that.find('.ui-jqgrid-btable').setGridWidth(inWidth – 2, true);
with
that.find('.ui-jqgrid-btable:eq(0)').setGridWidth(inWidth – 2, true);
First action finds also subdrids. 
I use doctype. Any other clue? This problem only persist if i'm usin IE8 in difrent modes. In IE 7 loading box isworking ok.
check your css styles
What did you mean with this? I deleted rows from json and the problem is still there.
Tony thx,
found solution, i had problem in my CSS file.
table
{
screensGrid also behaves ok if pager shows 1/1, AND if i select like 50 hits.
I see now the problem:
If i have page 4/4 (shows 8/10 rows), the problem disappear, on page 3/4 (10/10) problem appears.
Content tabel is 1px overhead so vertical scroll appears, because of this the horizontal scroll-bar appears.
screen shots:


At upper image you can see 1px overflow od grid content.

Override css:
Do you use jqgrid in hiden div/tab?
Suppose i call resize function on grid multiple times (because i attach resize trigger on on more events, like ui-layout resize, window resize, functions with timers, … ) that if resizing process of grid is running, that i would know.
In other words, if I call resize function of jggrid multiple times in serie (one after another), that resizing happens only one time.
ya but, for older grids ??, it may be helpful
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top