Changing the Picker Appearence in sencha touch -


i facing problem in changing picker view in sencha touch. want call picker in right hand side of view rather coming bottom in streched manner without making changes sencha touch 2.1.0 libraries. in advance.

you can set using enter or exit config (or) setenter() method on picker. this:

                        xtype: 'picker',                         enter: 'left',                         exit: 'right',                         slots: [                             {                                 xtype: 'pickerslot',                                 name: 'mypickerslot',                                 title: 'mypickerslot',                                 data: [                                     {                                         text: 'one',                                         value: 1                                     },                                     {                                         text: 'two',                                         value: 2                                     },                                     {                                         text: 'three',                                         value: 3                                     }                                 ]                             }                         ] 

Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -