I have a HFlexBox with two buttons and a ListSelector. I would like the ListSelector to be on the right hand side. Is there a way to do this? I have the following block of code:
{kind: "HFlexBox", align: "center", style: "padding: 5px; background-color: blue", components: [
{ kind: "Button", caption: "Submit", onclick: "OnSubmit" },
{ kind: "Button", caption: "Draft", onclick: "OnDraft" },
// would like to make this be on left hand side
{ kind: "ListSelector", name:"mylist", value: 2, onChange: "itemChanged", style: "align: left", items: [
{ caption: "One", value: 1 },
{ caption: "Two", value: 2 },
{ caption: "Three", value: 3 },
]}
]}