Hi Tom,
You can customize the appearance of a Group by handling the grouprenderer function. The function should return HTML string and s called when a group is rendered. You can use it to customize the default group rendering.
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