-
29 Aug 2012 4:54 AM #1
Ext JS 4.1 Controller Refs Selector with CSS Class
Ext JS 4.1 Controller Refs Selector with CSS Class
I am trying to control click event of all buttons that has tab as class.
This works.
This doesn't work.Code:this.control({ 'button' : { 'click' : this.gotoTab } });
Code:this.control({ 'button.tab' : { 'click' : this.gotoTab } });
-
30 Aug 2012 12:43 AM #2
-
2 Sep 2012 9:34 AM #3
Thanks it solved my problem.


Reply With Quote