Documentation

strict

enables strict mode for webix library.

boolean strict;

Example

webix.env.strict = true;

Details

False by default.

In Strict mode Webix doesn't use "eval".

Should be enabled if Content Security Policy is switched on for the application or if the application runs in a "strict" mode The flag should be enabled before Webix files are included into the page.

Note that datatable math won't work with the webix.env.strict enabled.

Back to top