Thank you so much OlegK. The demos are wonderful.
One thing to add for the other users who need to get the similar grid worked, please add the following patch to jqGrid 4.5.2 from GitHub.
<a href="https://github.com/tonytomov/jqGrid/commit/17af0cb9ca07ad88388de4e8cc6a8af5697423b7https://github.com/tonytomov/jqGrid/commit/17af0cb9ca07ad88388de4e8cc6a8af5697423b7</a>
Again, thanks so much!!
Again, truly appreicate the great jqGrid tool and Okelg's generous contribution.
For anyone who has the similar issue, please refer to the following link. Read through the sample code and demo pages, you will be able to get a perfectly working grid table with filter toolbar and frozen column enabled, and even with the cell text wrapped.
All the best! 
The post at the following link described the exact same issue I have. I should be able to figure out a solution by study the post ![]()
http://stackoverflow.com/questions/8686616/how-can-i-get-jqgrid-frozen-columns-to-work-with-word-wrap-on;..rd-wrap-on
Have you been able to figure this out? I get the same issue, and it happens on the first load and my first loaded list is a sorted result. Exactly the same problem as you described – only the first half of the subgrid expanded, and the rest of the rows can't be expanded. By checking with firebug, I can see the subgrid html/javascript got messed up.
Thanks very much if you could provide some info about how to fix this issue.
Thank you for the reply. It turn out to be so simple using the custom formatter.
Thanks for sharing the code. It works. But only the data in current grid was captured using the following method
Finally, I got the xml data from server side jsp page rendered in grid. 🙂
My solution is to add these two links to ensure the response data in xml format.
<%
response.setContentType(“text/xml”);
response.setCharacterEncoding(“UTF-8”);
%>
Hi Burt,
Thanks for the suggestions. Indeed there are some problems about my json string (though it was generated by flexjson and it was valid). I corrected it and put it in the javascript in html, the json string data rended in grid succefully. But I still could not loaded the same json string if it was produced from jsp page.
So here is my test.
I copied the json string generated by http://localhost:8080/examples/holdingsJSONData.jsp to jsonGrid4.html. jsonGrid4.html can display the data well. And following is the source.
// generated by holdingsJSONData.jsp and copied here
var mystr = “{page: '1', records: '6', rows: [{cell:['X-RAY', '46190', '1144', '2127', '17', '49479'], id: '1'},{cell:['NMR', '6846', '849', '146', '6', '7847'], id: '2'},{cell:['ELECTRON MICROSCOPY', '165', '16', '59', '0', '240'], id: '3'},{cell:['HYBRID', '13', '1', '1', '1', '16'], id: '4'},{cell:['other', '108', '4', '4', '9', '125'], id: '5'},{cell:['Total', '53322', '2014', '2337', '33', '57707'], id: '6'}],total: '1'}”;
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top