Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
TypeError: this.sidebar is undefined
I've a model which inherits a field from another one:
class 2ndclass(models.Model):
_name = 'mymodel_name'
_inherits = {'1stclass': 'id_1stclass'}
id_1stclass = fields.Many2one('1stclass', 'First Class', widget="many2one_list")
When I create a new object, there is a small arrow near 'First Class'. If I click on It, I get this popup error:
Odoo Client Error
TypeError: this.sidebar is undefined
http://localhost:8069/web/js/web.assets_backend/c686f43:3994
Below this popup, there is another one which allows to modify the selected 1stclass id.
How can I solve it?
Thanks!
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 9/9/15, 6:08 AM |
Seen: 999 times |
Last updated: 9/9/15, 6:38 AM |
Do you have this widget many2one_list?