These solutions (Reloading/refreshing Kendo Grid)
$('#GridName').data('kendoGrid').dataSource.read();
$('#GridName').data('kendoGrid').refresh();
do not work for a Kendo MVVM grid. Specifically $('#GridName').data('kendoGrid') returns 'undefined'.
My question is: what method could be used to trigger a grid refresh/reload via a button controller in Kendo UI MVVM grid?