In your demos 3.30 under "Row grouping" i.e.
http://paramquery.com/pro/demos/group_rowsI just changed rendering for Customer Name to cause it to be in upper case with this ColModel declaration:
{ title: "Customer Name", width: 130, dataIndx: "ContactName",
render: function (ui) {
var txt = ui.cellData;
return { text: txt.toUpperCase() }
}
},
This will cause this error to appear "Uncaught TypeError: Cannot read property 'toUpperCase' of undefined"
This is because ui.cellData is undefined
Also I noticed that out of all the columns in the grid - ui.rowData has only these 3 columns: freight, ShipCountry and ShippedDate. All the other columns are undefined.
I need render to display cells according to what the user needs and the user needs grouping.
Is there any work-around?