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.

I've small experience with Sencha Touch 2 and Ext JS. I've a problem finding the available eventlinsteners in the framework (e.g. tap, show, hide, etc.) and their description. Any help is appreciated.

Thanks!

share|improve this question
Any feedback is appreciated. – A1rPun Nov 20 '12 at 14:34

1 Answer

Alright, look at the List in the docs, it has a listeners configuration.
Inside this configuration you can specify events like itemtap or hide.

Lets look at the event itemtap:

itemtap( this, index, target, record, e, eOpts )

It has 6 parameters you can use. The parameter this and eOpts are common for every event.
In your code it looks like this:

Ext.create('Ext.List', {
  fullscreen: true,
  itemTpl: '{title}',
  data: [
    { title: 'Item 1' },
    { title: 'Item 2' },
    { title: 'Item 3' },
    { title: 'Item 4' }
  ],
  listeners: {
    itemtap: function(cmp, index, target, record, e, eOpts){
      alert('Tapped on index: '+index);
    }
  }
});

This will alerts a message when you tap something in your list, good luck :).

share|improve this answer

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.