Hello all,
I wonder if there is a way to make autocomplete choices for an action
parameter dependent on the value of another parameter. In this case, I
would like that the user select a client in the first parameter, and
then only the selected client's cases be shown in the second parameter.
@ActionLayout(named = "Client report by case")
public Blob clientReportByCase(
@Parameter(optionality = Optionality.MANDATORY)
@ParameterLayout(named = "Client") final Client client,
@Parameter(optionality = Optionality.MANDATORY)
@ParameterLayout(named = "Caso") final String case) {
...
}
Thanks!
Miguel