Jqgrid Has Issues Loading Subgrid In Ie7
Solution 1:
I reported the bug here. The problem was the typing error in the line where +=
was used instead of =
. As the result undefined
was added to every row having subgrid.
It's untypical, but Tony modified the code of jqGrid after my bug report and published it on the download page under the same version number 4.3.2. So there are two different versions of jqGrid (with the bug and without it) with the same version number.
So to solve the problem you should just refresh the jqGrid 4.3.2 which you use.
UPDATED: I downloaded the sources of "new jqGrid 4.3.2" and I am very surprised because it contains not only the current bug fix, but also many other changes which was done in jqGrid last time. Many from the changes was suggested by my by the way. For example one can use now custom controls in the Searching Dialog (see my recent answer here), one can use searchOnEnter
and closeOnEscape
in the SearchingDialog, new afterChange
callback is there. Locales for English and German are fixed. For example now it will be used comma as thousandsSeparator
in grid.locale-en.js
. It's very strange, but new versions of grid.locale-en.js
and grid.locale-de.js
are placed only in src\i18n
subdirectory. The subdirectory js\i18n
contains old version of the files (???). I can continue...
In any way I recommend everyone to refresh the sources of jqGrid 4.3.2 previously downloaded from the download page.
Post a Comment for "Jqgrid Has Issues Loading Subgrid In Ie7"