私が作成したウィジェットの特定のメソッドにアクセスする方法を考えています。
var foo = {
init : function() {
$.bar.addEventListener('click', this.handleClick);
},
handleClick : function(e) {
console.log(this); // TiUIButton { widgetId="Ti.UI.Button:0" ...
// I want to call baz() here....How to do that?
},
baz: function() {
}
};
foo.init()
ドイツからのご挨拶、ご協力ありがとうございます。
--マーク