Can you trigger action/events in Sencha Touch from html elements?

后端 未结 2 1794
误落风尘
误落风尘 2021-01-03 03:38

I have a Sencha tab panel, each tab loads html content via ajax. One of the components is a post/list that visitors can use to drill down once more to read the entire post.

2条回答
  •  既然无缘
    2021-01-03 04:30

    The solution for 2.2.1:

    initialize: function() {
        this.element.on({
            tap: ,
            delegate: 
        });
    
        this.callParent(arguments);
    }
    

    can be anything fitting in to Ext.query() too.

提交回复
热议问题