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

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

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -