Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
4 Odpovědi
6865 Zobrazení

Hi there:

I want to show two options in a form (OpenERP7). User can only select one of the options. I know OpenERP7 doesn't have radio buttons, so I thought I could try using checkboxes (boolean fields). The idea was define an onchange method for a checkbox (i.e. for the boolean field), and in that event I wanted to return the value for the other checkbox (boolean field). I was debugging the onchange event: it never was hit!!

So, how to unmark one checkbox when the other was marked?

 

Thanks in advance.

Avatar
Zrušit
Nejlepší odpověď

Hi Yuly!

In order to emulate radio buttons, an easy way would be to use "attrs" with"readonly" attributes to force select only one of the 2 options.

You can add to your model 2 boolean fields representing the 2 exclusive options then create an inherited form view as follows:

                            <field name="x_option1" attrs="{'readonly': [('x_option2','=', True)]}"/>
                            <field name="x_option2" attrs="{'readonly': [('x_option1','=', True)]}"/>

Now when you try to select an option in the form view, the other one is made readonly and vice-versa.

Hope it helps.

Regards

Avatar
Zrušit
Autor

Hi buddy. First, thanks for your solution. It is not exactly what I was looking for, but I like it. I wanted to uncheck the checkbox, not hide it. Thanks for your replay.

Please try this instead then:

Nejlepší odpověď

In Odoo 9:

i need create a field like check boxes:

what is your favorite color?  ☐ Blue  ☐Pink  ☐Yellow <--The user only can choice one favorite color, if the user select  ☐Blue then the  ☐Pink or  ☐Yellow field can not be selected, if the user select  ☐Pink, then  ☐Blue or  ☐Yellow can not be selected....

any idea how to create this type of field and function...

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
pro 15
6311
1
dub 25
4023
1
úno 16
5943
1
pro 15
9011
0
srp 15
3009