Hi,
how can i add a dropdown list in xml file
i use odoo 8
thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
x = fields.Many2one(model_name, string)
In view
<field name="x"/>
This will give the dropdown on view with create and edit option of the related model and display the rec_name of each entries. If you need the pure selection list as a widget selection with the field.
<field name="x" widget="selection"/>
These are the params we use while creating many2one field.
Many2one field in comodel_name (string)False)Next is you can use the Selection.
here you can specify values directly as a key value pair.
x = fields.Selection([
('normal', 'In Progress'),
('done', 'Ready for next stage'),
('blocked', 'Blocked')], string='State')
Create an account today to enjoy exclusive features and engage with our awesome community!
Tilmeld dig| Related Posts | Besvarelser | Visninger | Aktivitet | |
|---|---|---|---|---|
|
0
maj 23
|
2557 | |||
|
Button in Odoo
Løst
|
2
jan. 20
|
6540 | ||
|
1
dec. 16
|
5649 | |||
|
1
dec. 15
|
7545 | |||
|
3
okt. 15
|
19959 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.