I have several buttons that I have wired up to "Reset" a Kendo Grid... one of those buttons removes the grouping that might have been applied to this grid... I have the button wired up with the following javascript
...
var grid = $('#grid').data('kendoGrid');
grid.dataSource.group([]);
...
But when this button is clicked it throws an error in the kendo.all.min.js file (line 15, column 25157) that says "Unable to get property 'replace' of undefined or null reference...
I have also tried these
grid.dataSource.group([{}]);
grid.dataSource.group([{field: ""}]);
Basically I just want to be able to programmatically remove the grouping that may have been applied to the grid.