Odoo16
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.
2 Answers
0
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')]}" />