Hello
I know there is a way to hide/show input parameters to the user depending on another value by using the following, which it's pretty useful and i use it a lot.
we enter someting like this in the pencil field : #input_variable == "expected value"
But now i need to find also when when a substring is found!
something like :
#input_variable == "*substring*"
#input_variable == ".*substring.*"
#input_variable.indexOf("substring")
Tried all that, but nothing works
Does this really can be done in some way??
Oscar