Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
1888 Vizualizări

I want to hide char field when another Boolean field is clicked true?

HOw to do this?

<field name="x_studio_code_reference" attrs="{'invisible': [('x_studio_is_an_asset','=','True')]}" />

I used this but nothing happen.

please help me

Imagine profil
Abandonează
Cel mai bun răspuns

Hi,

Update the code like this by removing inverted coma from 'True' ,

<field name="x_studio_code_reference" attrs="{'invisible': [('x_studio_is_an_asset','=', True)]}" />

Thanks

Imagine profil
Abandonează