I am using MVC4 with the latest Kendo UI Q2. I am trying to use the mvc wrappers to implement a list view.
How can I stop the load icon displaying on the list view when using the MVC wrappers? when not using wrappers the following code in the datasource transport worked for me but how do I achieve the equivilent with wrappers?
parameterMap: function (options) {
kendo.ui.progress($("#rolesListView"), false);
return options;
}