the maximum width/height of an HTML element that can be created by Webix
if(env.isIE || env.isEdge || env.isFF)
env.maxHTMLElementSize = 10000000;
if(env.isSafari)
env.maxHTMLElementSize = 100000000;
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