For both Edit, List and Show, I have dynamic dates that may or may not have values attached to them, I've been willing to render dynamic Custom TextFields, essentially tags but can't seem to get it to work.
Data structure is somehow similar to this:
{
"id": 1,
"category_type": "One",
"category_name": "Type One",
"prices": [
{
"value": 123.00
},
{
"value": 123.00
},
{
"value": 123.00
}
]
},
{
"id": 2,
"category_type": "Two",
"category_name": "Type Two",
"prices": [
{
"value": 123.00
}
]
}
Prices are coming based on a calendar timeframe, index 0 is start date, and end date determines the end of the date. Some dates will have 0 values, others will have value > 0.
The idea here is to produce a great datagrid with dynamic TextFields or TextInputs so Users can view/add/edit prices or zero it based on a start/end date period.
Edit: I've tried to outline the explanation in a mockup: