Hi,
I am integrating Backendless with my app.
I use the REST api to login a user. When this is successful the returned object includes a property called formSchema that contains a JSON object.
This JSON object contains a basic schema like this example below:
{"form":[{"desc":"Name","type":"text"},{"desc":"Email","type":"text"},{"desc":"Phone number","type":"text"}]}
I want to then dynamically create a custom list based on this.
Each list item should contain a label showing the text in the “desc” field.
Then there should be another type of component. In the example above these should all be text boxes as denoted by the “type” field.
The type might also be a checkbox, or a dropdown select (with the object also defining the options).
I am unsure how I create this list in Adalo. (In Javascript, PHP, etc it would be very easy!)
Can anyone give me any pointers?
Thanks!