I realize I can set the theme globally like this:
mobiscroll4.settings = { theme: 'auto', themeVariant: 'light', lang: js_locale, dateFormat: js_dateformat };
And I can specify a theme in the control initialization code like this:
$('#businessreport').mobiscroll4().listview({
swipe: false,
enhance: true,
theme: 'ios'
});
But what I’m finding is that I like the ios theme style for certain components but not for others so I’d like to be able to say for example, apply the ios theme to all listview, navigation and eventcalendar components globally, but apply the mobiscroll theme to all buttons and popups globally.
And in fact, I’m finding it difficult to allow mobiscroll to apply themes automatically because the ios theme in particular quite often doesn’t work well with the rest of my site, in particular a white background (the buttons pretty much disappear leaving only the button text, and disabled buttons are all grey including the text making them impossible to read).
So what would be the easiest way to say, never use ios styling on buttons or popups, but everything else is fine, and always use ios styling on listview, nav and calendar controls but use ‘auto’ for all other controls. Is this possible?