Hi, we use the free version of param query and a weird situation is happening.
a well defined grid doesn't show the column model header.
what can be the cause to that ?
I have attached the grid initialization.
with the sample code it works ok, but not with my code.
var netColModel = [
{ title: "CIDR Address", width: 100 },
{ title: "Network Name", width: 100 }
];
var netDataModel = [["345345","dfgdfg"],["234234","66565fg"]];
var netGrid = $('#net-grid').pqGrid({ height: 440, width: 800,
dataModel: { data: netDataModel },
colModel: netColModel,
title: "Grid",
resizable: true,
draggable: false,
columnBorders: true,
sortable: false,
editable: false,
selectionModel: {type: 'row', mode: 'single'},
scrollModel: {horizontal: false}
});