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
1868 Zobrazení

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

Avatar
Zrušit
Nejlepší odpověď

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

Avatar
Zrušit