-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
Odoo 11 Development Cookbook - Second Edition - Second Edition
By :
When using Odoo as a developer, you need to know how to activate Developer Mode in the web interface to access the advanced settings menu and developer information.
To activate Developer Mode in the web interface, do as follows:
adminSettings menuShare the love card, which should be on the right of the screen:

Activate the developer mode linkIt is also possible to activate the developer mode by editing the URL; before the # sign, insert ?debug. For instance, if you are starting from http://localhost:8069/web#menu_id=102&action=94, then you need to change this tohttp://localhost:8069/web?debug=#menu_id=102&action=94.To exit the developer mode, you can do either of these:
Deactivate the developer mode link displayed in the Share the love card when the Developer mode is activeWhen in developer mode, two things happen:
Bug icon is displayed next to the user's menu in the top-right corner, giving access to technical information about the model being displayed, the various related view definitions, the workflow, custom filter management, and so onThere is a variant of the developer mode—the Developer mode (with assets). This mode behaves as the normal developer mode, but additionally, the JavaScript and CSS code sent to the browser is not minified, which means that the web development tools of your browser are easy to use for debugging the JavaScript code (more on this in Chapter 15, Web Client Development).
Caution! Test your addons both with and without developer mode, as the unminified versions of the JavaScript libraries can hide bugs that only bite you in the minified version.