sencha touch给没有点击事件的控件添加点击事件

实现添加点击事件的方法:
/**
	 * 给没有tap事件的控件添加tap事件
	 */
	addTapEvent : function(component) {
		component.element.on('tap', function(e, t) {
			component.fireEvent('tap', component, e, t);
		}, component);
	},


在初始化方法添加:
initialize : 'addTapEvent',
tap : "onDistributorNameTFTap"

你可能感兴趣的:(Sencha Touch)