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
Post a Comment