Ir al contenido
Menú
Se marcó esta pregunta
4 Respuestas
7376 Vistas

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
Descartar
Mejor respuesta

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
Descartar
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:

Mejor respuesta

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
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
dic 15
6809
1
abr 25
4538
1
feb 16
6523
1
dic 15
9417
0
ago 15
3482