Extjs触发单击、双击、右击事件。

            listeners: {
                "dblclick": { fn: this.onModifyClick, scope: this}, 		//响应双击事件
                "rowcontextmenu": {fn: this.onRightMenuClick, scope: this},  //响应右击事件
                "click": {fn:this.onClick,scope:this} 						 //响应单击事件
            }

你可能感兴趣的:(Extjs)