Front End Rendering Considerations

There are no errors in the API Logs or console but the component doesn’t render

When an Izenda components is rendered, it will scale to fit its container’s size. The following CSS class definition will scale an HTML element to the size of the window. .. code-block:: css

.container {
width: 100%; height: 100vh; min-height: 100vh; }

The “Visual” Tab of Forms Editor in the Report and the “Text” Tile Editor in Dashboards Don’t Render

The plugin used for Forms and Dashboard Text Tiles utilizes the “RootPath” value defined in your Configuration JSON declared when the Izenda config function is called (e.g. “RootPath”: “/Scripts/izenda” ). For more information about Izenda’s config function, please refer to our list of Front-end Integration APIs

  • If you have deployed your front end application into a virtual directory, ensure that your virtual directory name is included in the root path name (e.g. If you have deployed your application to “FE”, your Root Path value would be “/FE/Scripts/izenda”)
  • Ensure that the izenda_vendors.js file exists within your solution

Re-using Containers to Render Different Izenda Components

If you choose to re-use a container to render different Izenda Components, you will need to unmount the Izenda component, remove Izenda’s routing from your URL and, finally, remove the HTML in the element.

If you are using one of Izenda’s sample kits, the following function can be added to your izenda.integrate.js to recycle a component given a particular HTML Element ID (e.g. “izenda-root”). In your own development, you may need to modify the logic that obtains the Base URL for your application’s page.

var RecycleComponent = function (elementID) {
   var component = document.getElementById(elementID);
   IzendaSynergy.unmountComponent(component);
   var baseUrl = window.location.href.split('#')[0]; //removes the anchor from the URL. The anchor contains Izenda's routing
   window.history.pushState({ 'html': document.documentElement.outerHTML }, '', baseUrl); //sets URL to initial state (no Izenda routing)
   component.innerHTML = '';
 };