I have parametrization question. I give example below. I want that if people select the value 1 for aa parameter than I want to disable xx and yy parameters. If people select 0 for aa than they can select the xx and yy parameters. How can I do that?
aa = NumberField(“aa”, default=0, min=0, max=1, variant=‘slider’, step=1)
…
…
xx=Numberfield…
yy=Numberfield…
Hi ecbilge,
It is possible to change the visibility of fields based on the values of other fields. This way you can hide or show a field base on the value of field aa
. Please have a look at our documentation for an example implementation.