Dynamic generation of form on mobile app

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.

Hey @Eric_Melka,

I think we can trigger js query onChange of each choice to generate next choices.

example (1).json (16.2 KB)

1 Like

I will give it a try but not sure it will help to meet my need. Thank for the tips :slight_smile:

1 Like