Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
5117 Visualizzazioni

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
Abbandona
Risposta migliore

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
Abbandona
Autore

Perfect, Thank you bro.

Post correlati Risposte Visualizzazioni Attività
2
set 17
8246
0
set 15
4447
2
set 15
10954
1
set 15
3579
1
set 15
6949