maxHTMLElementSize

the maximum width/height of an HTML element that can be created by Webix

number maxHTMLElementSize;

Example

if(env.isIE || env.isEdge || env.isFF)
   env.maxHTMLElementSize = 10000000;
if(env.isSafari)
   env.maxHTMLElementSize = 100000000;

Details

This config limits the size of HTML elements created by Webix so that they don't exceed the size allowed by a browser. The value of the setting is approximate and changes depending on the used browser.

Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.