Articles in this section
Category / Section

How can I assign the default theme of a specific mobile OS to the automatic theme system?

1 min read

By default, when you render an application in the ejm environment, the appview is set with the default theme based on the OS. For example, by default iOS light theme for iOS and holo light theme for Android. In order to apply the user desired theme for the specific OS, you have to set the specific theme option with data-ej-theme attribute in the head tag. Refer to the following code example.

Script

</script>

if (ej.isIOS7()) //This will set default theme for iOS7 device.

        $("head").attr("data-ej-theme", "dark");

    else if (ej.isAndroid()) //This will set default theme for Android device.

        $("head").attr("data-ej-theme", "light");

</script>

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied