Hi there,
Don't know if my approach is wrong, in one of my tools I tried to create a conditional with a boolean parameter and I cannot get it to work. E.g.
<conditional name="testCond">
<param name="input1" type="boolean" checked="false" truevalue="dothis" falsevalue="dothat" label="Test Checkbox"/>
<when value="dothis"/>
<when value="dothat">
<param name="input2" type="text" size="100" label="Test"/>
</when>
</conditional>
The form throws and error with:
Exception: ('No case matched value:', 'testCond', False)
Even if I try to remove truevalue and falsevalue from the param and change the when value="True" and when value="False" I still get the same error.
best,
Leandro