sencha touch 2.0のhtml(property)内の要素にイベントを追加しようとしています
items:[
{
html:'<div id="btn" style="height:30px;width:100%;background:green">hello <div/>'
}
]
私はコントローラーでこれらの方法を試しました
config: {
refs: {
mybtn:'#btn', ----> i tried (Ext.select('#btn'),Ext.getCmp('btn'),Ext.get('#btn'))
},
control: {
mybtn:{
tap:'call'
},
}
},
call:function(){
alert("some thing");
}
これは機能しません。これを行う方法はありますか、または少なくともこれらの要素をtplおよびhtmlプロパティで取得する方法はありますか?