I don't want to display the regular Grouping Row template:
Group.ColumnName + ": " + Group.Key + " - " + Group.Count + " items"
I need to remove the Grouping Counter.
My solution right now is:
$("#MyGroupingGrid .e-groupcaption").each(function (i, e) {
var t = $(this).text(), p = t.lastIndexOf(" - ");
if (p >= 0) {
$(this).text(t.substr(0, p));
}
});
There's any cleaner way to get what I need?