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

Good day

i'm trying to edit the hr_applicant form view and there's a selection field, with values "Yes" and "No" (ok, ok is not boolean but the bosses want a selection field) and they want to keep other fields hidden when the selection field says no... if the selection field says "yes" the other fields appears; example:

Have car? = "Yes or not"

if "Yes" appears:

marc: chevrolet

model: camaro

year: 1969


is there a way to do that?

Avatar
Zrušit
Nejlepší odpověď

yes, there is a way like this:

<field name="have_car"/>
<field name="marc" attrs="{'invisible': [('have_car', '=', 'no')]}"/>
<field name="model" attrs="{'invisible': [('have_car', '=', 'no')]}"/>
<field name="year" attrs="{'invisible': [('have_car', '=', 'no')]}"/>


Avatar
Zrušit
Autor

Perfect, Thank you bro.

Related Posts Odpovědi Zobrazení Aktivita
2
zář 17
8245
0
zář 15
4446
2
zář 15
10952
1
zář 15
3577
1
zář 15
6938