Threaded View
-
10 Jul 2009 9:32 AM #1
Unanswered: Extjs Core cuestion
Unanswered: Extjs Core cuestion
Hi! I need to add the click event for each element of the CompositeElement and toggle its own class.
when i do this, i can click on any item but it will only toggle the last item :SCode:arr = Ext.select('.cMenuParentCollapsed'); arr.each(function(){ this.on("click",function(e,t){ this.toggleClass("cMenuParentExpanded"); }); });
What i'm i doing wrong?
Thanx!


Reply With Quote