frame

frame, tile type

The frame tile displays a table-like block where columns are declared inside a columns block.

table T = with
  [| as Name, as Qty |]
  [| "A", 10 |]
  [| "B", 5 |]

show frame "Items" with
  columns
    T.Name
    T.Qty
User Contributed Notes
0 notes + add a note