Can we dynamically display form fields on we web based on the object key values?
You need to bind an array to display a list via a div and the Items property (by clicking on the plug item).
If you just want to bind one property of an object, simply click on the plug icon next to the item you wanna bind.
I have a json like this
{
“Name”: {
“type”: “input”,
“value”: “Item1”
},
“Size”: {
“type”: “text”,
“value”: “16GB”
},
“Model”: {
“type”: “input”,
“value”: “Plus 5”
},
“Color”: {
“type”: “color”,
“value”: “#FF5733”
}
}
So here type means it is the data type pf the form field based on this dynamically form shd display a input field and a text field and a color field and if anything changes in the json the form shd display the fields as per the json
Do we have any predefined way in we web to handle this ?
@Broberto i couldn’t understand the solution you suggested