Inside of a scroller, I want a vertical list of buttons (e.g., x,y,z) with 5 fields after each button. When a button is pressed, I want one of the fields to toggle from off to on.
{X}[0][0][0][0][0]
{Y}[1][0][0][0][0]
{Z}[1][1][1][1][0]
How do I set the size of the buttons (X,Y,Z) so I can have multiple elements on the same line?
Current button code, taken from enyo tutorial:
{kind: "Button", caption: "X", onclick: "buttonClick", className: "enyo-button-dark"}