Regardless of the installation way, the package includes two versions of the JS sources:
So, you can include the appropriate file - only one JS file, not both - in the following way:
// full version
<link rel="stylesheet" href="../webix/codebase/webix.css" type="text/css">
<script src="../webix/codebase/webix.js" type="text/javascript"></script>
// minified version
<link rel="stylesheet" href="../webix/codebase/webix.min.css" type="text/css">
<script src="../webix/codebase/webix.min.js" type="text/javascript"></script>
In order to use the debugging functionality, make sure that you have included the non-minified version of the library - webix.js.
With this file it will be possible to:
You can check the details in the related article in Webix blog.
You can enable the following options for debugging:
webix.debug({events: true});
webix.debug({size:true});
Before version 6.0 the flags were enabled as:
webix.debug = true;
webix.debug_size = true;
Debugging menu is activated with a "Ctrl + right mouse click" combination on the needed component and makes it possible to:
Before Webix 6.0 the files had different names for the full and minified sources respectively:
// debug version
<link rel="stylesheet" href="../webix/codebase/webix.css" type="text/css">
<script src="../webix/codebase/webix_debug.js" type="text/javascript"></script>
// standard version
<link rel="stylesheet" href="../webix/codebase/webix.css" type="text/css">
<script src="../webix/codebase/webix.js" type="text/javascript"></script>
Back to top