viewof cake = controlPanel([
[
Ctrls.radioGroup("flavor", ["Vanilla", "Chocolate", "Coffee", "Strawberry"], {label: "Flavor:", value: "Vanilla"}),
Ctrls.radioGroup("shape", ["Circle", "Square", "Rectangle", "Triangle"], {label: "Shape:"})
],
[
Ctrls.slider("size", {label: "Size =", min:7, max:13, value:7}),
Ctrls.toggle("candle", {label: "Candle?"}),
Ctrls.dropdown("numOfCandles", [...Array(11).keys()].slice(1)),
Ctrls.radioGroup("card", ["None", "Happy Birthday", "Congratulations", "Good Job!!", "Custom"], {label: "Card:"}),
Ctrls.textBox("customText")
],
[
Ctrls.toggleGroup(["Flowers", "Wine", "Chocolates", "Ribbon"], {label: "Specials:", checked: false}),
Ctrls.colorButton("ribbonColor", {value:"#ff0000"})
],
[
Ctrls.date("date", {label: "Date:"}),
Ctrls.radioGroup("pickup", ["Pick up", "Deliver", "Ship"])
],
[Ctrls.rule()]
], {style: "font-family:sans-serif;font-size:10pt;pointer:default"});