Can you make it so that fields that need to be filled out are created based on the data?
For example, you create a Symbol form template with 3 fields, and one is dynamic! Depending on the number of rows in the database, new elements are created.
For example:
HypeDataMagic.setData({
keyname: 'key additional HTML attributes', // for new Symbol
id: '1', // id Symbol load json or csv or MySQL etc..
title: 'Max Ziebell', // elements in symbols
elements: '', // automated created element
items: [
{
id: '34564', // load
name: 'one', // load
},
{
id: '12312',
name: 'two',
},
{
/// etc...
}
],
});