Odoo Technical

Welcome!

This community is for professionals and enthusiasts of our products and services.
Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

0

In the 'Method Time' field, I have two radio buttons. Certain fields need to be shown or hidden based on which button is selected, but these fields are in different groups.

Avatar
Nithya

Odoo16

Avatar
Discard
2 Answers
0
Avatar
gayathri_k
Best Answer

.

Avatar
Discard
0
Avatar
Aarthikasri
Best Answer

    attrs="{'invisible': [('method_time', '!=', 'number')]}" />

                        attrs="{'invisible': [('method_time', 'not in', ['number', 'end'])]}" />

  attrs="{'invisible': [('method_time', '!=', 'end')]}" 

                        attrs="{'invisible': [('method_time', 'not in', ['number', 'end'])]}" />   

  attrs="{'invisible': [('method_time', '!=', 'end')]}" />   

Avatar
Discard