I'm using Ext.util.json.encode to encode the column model from a jqgrid, and passing that as the query string. It's long, but it works in Chrome/Firefox. In IE8, I see that the last half of the last column is truncated. If the last column is:
{"name":"Base","index":"GEOGRAPHIC_LOCATION","width":46,"type":"STRING","title":true,"hidden":false,"widthOrg":40,"resizable":true,"sortable":true}]
in IE, only up to
{"name":"Base","index":"GEOGRAPHIC_LOCATION","width"
is returned and the last 96 characters are cut off, for a total of 1986 characters as opposed to 2085.
I'm stumped. Any ideas?