Hi, I have a Crud Form with inter-related fields, i use setFieldProvider w

Hi,

I have a Crud Form with inter-related fields, i use setFieldProvider with ComboBox with a list of values for each field.
However when I select a value for a field from the ComboBox, I will need to update the list of values for the other ComboBox for another field.
How to do that ?

Thanks.

You can define the references to the fields outside the FieldProvider and add listeners accordingly, or implement a custom CrudFormFactory.

Thanks, exactly that. I could reference from the other field the previous one and do the filtering based on its value.
Thanks.