[]
        
(Showing Draft Content)

Licensing Wijmo Applications

Wijmo offers a 30-day free trial, so you can experiment with the Wijmo controls without a product key. However, note that the evaluation version displays a watermark underneath, when you run your application.  

To use Wijmo for production purposes, you must purchase a license from the Mescius website or by contacting our sales team. Once you purchase the license, you will receive an email containing the serial key.  

Follow the steps below to remove the evaluation watermark and license your Wijmo product: 

1.       Login to your Mescius account and register the serial key.   

2.       Go to My Account > My Licenses and click “Create Distribution Key”.  

3.       Click Add a Hostname and enter all the host names you want to use.  

4.       Once all the required hostnames have been added and click “Generate Distribution Key”.  

5.       Apply the distribution key to your application using Wijmo's setLicenseKey method. 

If you are importing Wijmo using a module loader, call setLicenseKey on the core Wijmo module:

import * as wjcCore from '@mescius/wijmo';
wjcCore.setLicenseKey('your license key goes here...');

If you are loading Wijmo using script tags, call setLicenseKey as follows:

<!-- Wijmo references (required) -->
<script src="https://cdn.mescius.com/wijmo/5.20231.904/controls/wijmo.min.js"></script>
<link href="https://cdn.mescius.com/wijmo/5.20231.904/styles/wijmo.min.css" rel="stylesheet"/>

<!-- apply your Wijmo licenseKey -->
<script>
    wijmo.setLicenseKey(**'your license key goes here...'**);
</script>

Now you can deploy the application to any of the domains that you specified when creating the licenseKey.