Back to Website
Show / Hide Table of Contents

Loading issues

  • Less than a minute to read

Design Editor does not load in Firefox

The editor loads in any browser but Firefox. At the same time, no messages show.

Solution

Check if the IFRAME element containing the editor has the display:none property. In this case, Design Editor cannot load because of the Gecko engine implementation. So, set the display property to block to load it correctly.

A product loads too slowly

It takes much time to open a product when you load the editor like this:

CustomersCanvas.IframeApi.loadEditor(iframe, productDefinition, config);

And then populate the product with user data:

editor.loadUserInfo(data);

Solution

The loadUserInfo method is time-consuming. To improve the load time, we recommend that you pass the data applied in this method right into loadEditor with autoLoadUserInfo enabled.

config.userInfo = data;
config.autoLoadUserInfo = true;
CustomersCanvas.IframeApi.loadEditor(iframe, productDefinition, config);
Was this page helpful?
Thanks for your feedback!
Back to top Copyright © 2001–2025 Aurigma, Inc. All rights reserved.
Loading...
    Thank for your vote
    Your opinion is important to us. To provide details, send feedback.
    Send feedback