Adding rows into a table
docMaker can add rows to your document's tables. It will add as many rows as you provide data in the JSON.
Example data :
{"orderLines": [
{
"item_name": "Shirt",
"item_price": 88,
"item_quantity" : 2
},
{
"item_name": "Shoes",
"item_price": 123
"item_quantity" : 1
},
{
"item_name": "Dress",
"item_price": 345,
"item_quantity" : 4
}
]
}
Template
Result
➡️
Last updated