Hi mocchi253,
It is possible to change the group’s header i.e where it says Customer: Kevin(1). You can achieve that by using the groupsrenderer.
Example:
var groupsrenderer = function (text, group, expanded) { return "" + group + "";}$("#jqxgrid").jqxGrid({ source: source, groupsrenderer: groupsrenderer, columns: [ { text: 'Ship Name', datafield: 'ShipName', width: 250 }, { text: 'Ship City', datafield: 'ShipCity', width: 100 }, { text: 'Ship Country', datafield: 'ShipCountry' } ], groupable: true, groups: ['ShipCity']});
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com