Ext.onReady(function() {
	var
		p = new Ext.Panel({
			items: [{
				xtype: "label",
				text: "DoIt!",
				listeners: {
					render: function(label, eOpts) {
						this.getEl().on("click", this.onClick);
					}
				},
				onClick: function(e, htmlElement, eOpts) {
					if(window.console && console.log)
						console.log("onClick(%o)", arguments);
				}
			}],
			renderTo: Ext.getBody()
		});
});
???