How to access Debug info?

Switched my page to “webix_debug.js” to simplify troubleshooting.
Found on http://docs.webix.com/desktop__debug.html options, like webix.debug.
Tried to use but have no clue how does it work.

Can someone share an example of usage?

just add in any place of your app the next line

webix.debug = true;

It will enable extra debug output.

Also, there are two other extras in webix_debug.js

  • extra asserts that will run automatically and will show warning messages
  • you can use Ctrl-right-click to open Debug menu with some info about component under cursor

Also, you need to open JS console, to see the extra debug info provided by webix.debug flag

Thanks, I’ve got it.