Reputation: 161
Is there a way to force kendoui mobile to use same ios theme of my application for both iOs and android.
Upvotes: 1
Views: 2694
Reputation: 411
The theme can be set in the app initialization.
var app = new kendo.mobile.Application(document.body,
{
platform: "android"
});
as per http://docs.telerik.com/kendo-ui/api/mobile/application#configuration-platform
Upvotes: 1