Ext JS Theme Application Guide (Sencha CMD)

miraeweb_logo_square_bd4579d6-c64c-44d3-8582-7e577d84406f

MiraeWeb   

1. Overview

This article describes how to apply a purchased theme in a project that consists of a Sencha CMD environment.

Applying a theme requires a few steps.

- Check The License Code
- Open The ExtJS Project


- Apply the theme file to your project
- Applying app.json
- Modify IndexHtmlPath File

 

0. Check The License Code

If you have purchased a theme, you should have received an email like this.
If you don't receive it, please contact us at support@ext-ui.com

In order to apply the theme, you will need the following items

- Theme Name
- License Key

This article assumes that you have purchased the theme-mercury-dark (Mercury Dark).

 

1. Open The ExtJS Project

If you used Sencha CMD, you will have a workspace.json.

The ExtJS project folder is where the workspace.json file is located, as shown in the screenshot below.


2. Apply the theme file to the project

Create a packages folder and apply the purchased theme.
(If you already have a packages folder, you can apply it with the same path).

 

3. Applying app.json

Open app.json and you will see a section called “theme”.
Modify this section.

app.json

{
    "name": "Sample",
    "namespace": "Sample",
    "version": "1.0.0.0",
    "framework": "ext",
    "toolkit": "classic",
    "theme": "theme-mercury-dark", //Change Purchase Theme 

    .
    .
    .
  

4. Applying indexHtmlPath File

Depending on your project, your indexHtmlPath may be different.
The path to indexHtmlPath is defined in app.json.
In this example, we'll assume that the indexHtmlPath is index.html.

For more information about indexHtmlPath, see Sencha Docs.


Edit IndexHtmlPath File

- Copy and paste the contents of Line 6 ~ 13 under the phrase "<-- The line below must be kept intact for Sencha CMD to build your application -->"

- 0. In the Check The Licence Code section, you can enter the information provided.

- Theme Name
- License Key

   

  .
  .
  .
    <!-- The line below must be kept intact for Sencha CMD to build your application -->
    </script>
   <script type="text/javascript">
        var Ext = Ext || {};
        Ext.beforeLoad = function (tags) {
          <!-- Ext['Theme Name'] = 'LicenseKey'; -->
           Ext['theme-mercury-dark']='Using_this_{theme-mercury-dark}_license_k.........'
        }
   }
    </script>
    <script id="microloader" data-app="" type="text/javascript" src="generatedFiles/bootstrap.js"></script>
  .
  .
  .