Hi, please, can you give us an idea of why the spinner not showing on IOS.
We are using the native spinner plugin, we have it working on Android but the code just does not do any thing on IOS.
Also, on Android sometimes the Kendo spinner appears in the background at the same time the plugin spinner shows.
We are using a function to show or hide the spinner in the code.
function showTheSpinner() {
console.log("Loading...");
if (window.navigator.simulator !== true) {
window.plugins.spinnerDialog.show(null,null,true);
}
}
function hideTheSpinner() {
console.log("Loaded!!!");
if (window.navigator.simulator !== true) {
window.plugins.spinnerDialog.hide();
}
}
6 Answers, 1 is accepted

I have just tried this in a new blank Kendo UI project and your code works as expected on iOS. Perhaps there is something else in your code that causes the problems. Can you send a sample project where I can reproduce this?
Regarding the automatic Kendo UI Loader that shows on some widgets when they are bound to remote data - you can remove this by adding the following line of code in the DataSource requestStart event handler:
kendo.ui.progress(element,
false
).
Where 'element' is the widget element, for example:
kendo.ui.progress($(
"#listview"
),
false
).
I'm looking forward to your reply.
Regards,
Martin Yankov
Telerik
Visit the Telerik Verified Plugins Marketplace and get the custom Cordova plugin you need, already tweaked to work seamlessly with AppBuilder.

If it works for you its probable I am doing something really wrong on my project.
If you are using the AppBuilder Web Client, you can simply tell me the name of your project. If you are using the Windows Client or the Visual Studio Extension, I suggest you open a support ticket and provide the your project files there.
I'm looking forward to your reply.
Regards,
Martin Yankov
Telerik
Visit the Telerik Verified Plugins Marketplace and get the custom Cordova plugin you need, already tweaked to work seamlessly with AppBuilder.

Thnak you Martin.
We actually use Web Client and Windows Client.
The project is "Auto Compartido". Please give us a hand, we runned out of tickets this month.
Pleeeaseee
I took a look at your app, but I had it difficult to debug it. The naming of the files didn't help me much and it's in Spanish I believe. Can you please provide some steps to reproduce and credentials with which I could log in? Again, such information would probably be better suited for a support ticket than a forum post.
I have tested the plugin by putting a button on your first view that shows the spinner and hides it with a timeOut and it works as expected, so the problem is probably connected to something you do in your code.
I'm looking forward to your reply.
Regards,
Martin Yankov
Telerik
Visit the Telerik Verified Plugins Marketplace and get the custom Cordova plugin you need, already tweaked to work seamlessly with AppBuilder.