Hello all,
Is there a way to set the default values of an OptionField by calling a function?
I have a list of options, but not all options must be selected at first, only a few. These options are dynamic, so I want to create a list of options that fill the OptionField. That works fine, but to set the defaults I want to use another function. That function is depended on another parametrization input, so I think I should be using a Function Lookup? So it would like:
options = [A, B, C, D]
selected_options = [A, C]
Both lists are dynamically changing depending on parameter input.
I hope my question is clear, thanks for the help!