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 },
      ]}
]}
link|improve this question

78% accept rate
1  
Its not clear what you are asking - your code comment asks about putting it on the left, but your text comment asks about putting it on the right. The order of the components is the order, listed. Unless your asking about the position of the menu rather than the selected value and menu indicator? – Ryan Watkins Jan 17 at 0:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.