Hello guys,
is there a way to retrieve option set specified in database table column created as multiple choice to populate select control in UI for example?
Hello guys,
is there a way to retrieve option set specified in database table column created as multiple choice to populate select control in UI for example?
Hi @Aleksandar_Dukovic ,
No there is no direct way to retrieve this type of information directly from DB scheme. But you can create a separate table in which such options will be listed additionally and make requests to that table to fetch options. With such approach there will be a slight duplication of data on the server side but you will not need to hard-code those values on the client.
Regards, Andriy