Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How we can realize a Combobox with sencha touch??

I tried with selectfield but when I install my app on an Android Phone, the select field doesn't work.

share|improve this question

1 Answer

 xtype: 'selectfield',
 label: 'Choose one',
 options: [
            {text: 'First Option',  value: 'first'},
            {text: 'Second Option', value: 'second'},
            {text: 'Third Option',  value: 'third'}
          ]

This is code straight from the sencha site. Select field works on Android. There must be something else wrong in your code.

share|improve this answer
SALAM. thank you for your response. i tried this same code but it doesnt work. I installed my app on the Galaxy S Ft-I9000 version android 2.3.2 and the selectfield doesn't appear. – zied jouini Mar 27 '12 at 21:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.