Tony,
Below the javascript code.
It works fine in 3.1.
It works fine in 3.2 Beta2 Firefox, but not in IE7. (Illegal argument )
If I remove the ‘hidden:true’ It works.
Regards,
Ton.
$(“#personDomain”).jqGrid({
url: ‘../ws/personDomains.jsp?stm=’ + (new Date()).valueOf(),
datatype: “xml”,
colNames:[lng_domain, “id”],
colModel:[
{name:”name”,index:”name”, width:200, xmlmap:”name”},
{name:”id”,index:”id”, width:10, hidden:true, xmlmap:”id”}
],
width:rightColWidth,
height:”100%”,
shrinkToFit:true,
rowNum:10,
rowList:[10,20,30],
imgpath: gridimgpath,
viewrecords: true,
loadonce: true,
loadComplete: function(){
$(“#personDomain tr”).css(“cursor”,”pointer”);
},
caption: ” + lng_domains + ”,
onSelectRow: function(id){
window.location = “home.jsp?domain=” + $(“#personDomain”).getRowData(id).id + ‘&stm=’ + (new Date()).valueOf();
},
xmlReader: {
root : “ResultSet”,
row: “row”,
repeatitems: false
}
});