Hi,
I created a data model to generate dynamically a form to asses the level of a horse rider.
Here is my data model :
evaluation_niveau, evaluation_groupe_criteres and evaluation_critere are master data for my evaluation forms.
My screen start with a select list component to select the level to evaluate (value = evaluation_niveau.id_niveau).
I would like to trigger on event handler "change" on my select list to generate dynamically a form with multiple checkbox group, the label of the group will be the description_groupe field from evaluation_groupe_criteres and each checkbox will be the description_critere field from evaluation_critere table.
Is there a way to achieve this, because I would like to avoid create a container per level, create all my groups and check box manually and map it to the entries of my tables.