I have a list of fields and each field has a datatype. That datatype can be a dropdown or can be something like a text. In the dropdowns the user inserts the values by himself using ";". I managed to do all of this but now I have a problem If I have two fields with dropdowns all the values go to the same list. I'm also having issues with the dropdowns showing on the datagrid. I create this fields and when I want to show them on the data grid I get nothing.
I would say that the data types should be mapped in a static table.
Then, it seems to me that if you add a calculated field to the main data list, of type long integer, and map it to the variable assigned to the dropdown in the table, you will solve the problem.
If all your dropdowns use same list, store DropdownOptions per field and not globally.
Also, if your values are not saving per row, bind variable = CurrentRow.FieldValue
Hi @Bernardo Laborde can you share the oml file