it would be nice to have something similar allowed (syntax negotiable, etc.):
<table>
<th>Initial Sales</th>
<tbody data-f-foreach="r in region">
<tr data-f-foreach="p in product">
<td><%= r %></td><td><%= p %></td><td><%= Initial Sales[r,p] %></td>
</tr>
</tbody>
</table>
for the case where /v2/model/introspect for this model returns
"ranges": [
{
"indices": [
"apple",
"orange",
"banana"
],
"name": "product",
"saved": false,
"type": "Subscript Range"
},
{
"indices": [
"east",
"west"
],
"name": "region",
"saved": false,
"type": "Subscript Range"
}
],
"variables": [
{
"name": "Initial Sales",
"saved": false,
"subscripts": [
"region",
"product"
],
"type": "Auxiliary"
},
]
(currently, this only works if region and product are separately model variables)
it would be nice to have something similar allowed (syntax negotiable, etc.):
for the case where /v2/model/introspect for this model returns
(currently, this only works if
regionandproductare separately model variables)