Forum
Hello All,
What a month...
We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful.
Please look here for a full list of changes
Enjoy
Your jqGrid Team
06:41
28/01/2013
admin said:Hello All, What a month... We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful. Please look here for a full list of changes Enjoy Your jqGrid Team
bravoo...
thanks to all jqgrid team, now i can continue my sample project..
success to you all jqgrid team.
11:49
21/11/2012
admin said:Hello All, What a month... We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful. Please look here for a full list of changes Enjoy Your jqGrid Team
thanks, but with jquery ui 1.10.0 dont displaying rows (ajax request seccesfull execute). With 1.8.24 working fine
21:35
27/02/2013
admin said:Hello All, What a month... We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful. Please look here for a full list of changes Enjoy Your jqGrid Team
As a newbie to jqGrid, I'm having to upgrade an app to the latest version. However, the filterGrid method has disappeared.
I installed from the NuGet package, but cannot find it in the source. Has it been deprecated? If so, what is the replacement?
Thanks!
de1phi said:
admin said:Hello All, What a month... We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful. Please look here for a full list of changes Enjoy Your jqGrid Team
thanks, but with jquery ui 1.10.0 dont displaying rows (ajax request seccesfull execute). With 1.8.24 working fine
+1
with 1.10.2 ui dont displaying rows (ajax request seccesfull execute).
16:58
Moderators
30/10/2007
Hello,
In order to resolve your problem we need a test case. All other words does not help.
We can not reproduce the described problem.
Thank you
Regards
For professional UI suites for Java Script and PHP visit us at our commercial products site - guriddo.net - by the very same guys that created jqGrid.
tony, maybe this can help?
project: fill table from remote json dataset. very simply and last time worked with any jqgrid version less 4.0.1 and jquery 1.8.2
if i see data in table and mark test result as OK, else not OK.
for IE am put in html this line
and now,
config: jqGrid 4.4.4 , jQuery 1.9.1, jQuery UI 1.10.2
result: FF 19.0 - not OK, IE 8 mode 8 standard - OK, IE 8 mode compartible - not OK
in firebug i can see remote result set (OK) but table not filled any data.
config: jqGrid 4.4.4 , jQuery 1.8.2, jQuery UI 1.10.2 (!)
result: FF 19.0 - OK, IE 8 mode 8 standard - OK
13:43
10/08/2009
If you open file jquery.jqGrid.src.js you will see more as 12000 lines of code. Do you believe that one can find a bug in the long code just having description of the problem? One need to have the demo which reproduces the problem with the detailed description of steps to reproduce it. If the problem exist with remote datasource (datatype: "json" or datatype: "xml") then you need catch the exact server respunse in HTTP traffic. One can use Fiddler, Firebug, Developer Tools of Internet Explorer or Google Chrome or many other tools. One can save the JSON/XML response in the file and reproduce the problem without any server infrastructure. So posting JavaScript code with JSON/XML response and HTML data you can provide enough information to debug the problem in jqGrid.
Before posting of bug report it's important to test your progrem with old versions of jQuery (1.8.3 and 1.7.2) and jQuery UI (1.9.2 and 1.8.24). The changes in jQuery 1.9.x and jQuery UI 1.10.x are very large. There are many compatibility problems in the versions. So before you write about the bug in jqGrid 4.4.4 you should verify that the orogin of the problem is really in jqGrid and not in new versions of jQuery or jQuery UI.
Just an example. Look at the thread. One described the problem in loading HTML data per dataUrl after updating on jqGrid and jQuery 1.9. After having detailed test case one could find out that the origin of the problem is that the method $.html from jQuery 1.9 interprets HTML fragmant as wrong if it starts with empty lines ("\r\n"). One posted the fix in jqGrid (post 4.4.4 version of github) with includding additional $.trim call (see here and here) although the origin of the problem was the server code which produced unneeded empty lines ("\r\n") and jQuery 1.9 which have the compatibility issue. In any way one can localize and fix the problem (or suggest some workaround) only if one able to debug the problem. Posts like "my program don't work after upgrading to jqGrid 4.4.4, jQuery 1.9.x and jQuery UI 1.10.x" has no value.
Best regards
Oleg
23:33
04/04/2013
on groupingToggle (collapse)
while(r) {
if( $(r).hasClass(uid+”_”+String(num) ) || $(r).hasClass(uid+”_”+String(num-1))) { break; }
$(r).hide();
r = r.nextSibling;
}
the IF is wrong, it’ll not work with the following grouping collapsing 2(*) (it'll collapse till the 0 above 1(*)).
0
1
2
3
1
2(*)
3
3
0
1(*)
Similar issue just a few lines above this (didn’t check yet expand on this).
After a little debuging, there is a similar problem with summaries (there also no lv to check here). Checking for from uid + num to uid+ 0, will not suffice.
Another problem is with “expand”: get, for example, a 3 levels grouping, starting expanded;
collapse some lv 2, some lv 1, now collapse a lv 0.
If you expand this lv 0, you’ll get all sublevels expanded.
Another problem, maybe simpler, is that you can’t search on a column hidden at start (ex. because it’s already used in the grouping).
Hoping this help. Best regards
cdkeito
00:42
04/04/2013
For the collapse problem, something like this colud help:
while(r) {
/******************************* add ****************************/
var dobreak = false;
if($(r).hasClass("jqfoot")) {
var lv = parseInt($(r).attr("jqfootlevel"),10);
if(lv<num) { dobreak = true; }
} else {
var numcur = 0 + num;
while(numcur>=0) {
if( $(r).hasClass(uid+"_"+String(numcur) ) ) { dobreak = true; break; }
numcur–;
}
}
if(dobreak==true) { break;}
/****************************************************************/
$(r).hide();
r = r.nextSibling;
}
Best regards
cdkeito
12:26
Moderators
30/10/2007
Hello Oleg,
I plan to release new version this week maybe after day or two.
Regards
Tony
For professional UI suites for Java Script and PHP visit us at our commercial products site - guriddo.net - by the very same guys that created jqGrid.
tony, OlegK: I solved the problem. worked at jqGrid 4.4.5, jQuery 1.9.1 and php 5.2. now
Problem: browser must fill table from remote json dataset. jqGrid 4.4.5 and jQuery 1.9.1. In IE 8.0 work fine, FF 20.0 - not work.
Page with jqGrid-table have line:
Its very important - this must tell to browser toggle Quirck mode to Standard.
And IE 8.0 to see this line switching to Standard, but not FF.
Open FireBug, open page and debug network activity. First line from site must be
, but NOT - i have 
WTF? Its php bug! Php incorrect worked with phpfile have UTF-8(wBOM) codepage.
This symbol before <!DOCTYPE html> prevented FF switching to Standard mode and FF still stay at Quirck mode....
Solution: resave all php files as UTF-8 without BOM codepage.
Most Users Ever Online: 715
Currently Online:
67 Guest(s)
Currently Browsing this Page:
1 Guest(s)
Top Posters:
OlegK: 1255
markw65: 179
kobruleht: 144
phicarre: 132
YamilBracho: 124
Renso: 118
Member Stats:
Guest Posters: 447
Members: 11373
Moderators: 2
Admins: 1
Forum Stats:
Groups: 1
Forums: 8
Topics: 10592
Posts: 31289
Newest Members:
, razia, Prankie, psky, praveen neelam, greg.valainis@pa-tech.comModerators: tony: 7721, Rumen[Trirand]: 81
Administrators: admin: 66