I have this data:
Continent":"Asia",
"Countries":{
"Japan":[
{
"Id":"1",
"ColumnName":"Osaka",
"Type":"Label", } ] }
I wanted to use the id and type as HTML tag attribute value like:
if label:
"<label> {{ColumnName}} </label>"
if textbox:
"<input type="text" value"Osaka">"
if dropdown:
"<select>
<option value="Osaka">Osaka</option> </select>"
Is that possible?
Thanks for all the ideas you can share! :)