-
24 Apr 2012 8:41 PM #1
Unanswered: regarding navigation
Unanswered: regarding navigation
how can i navigate to a new page on each slice click of pie chart in sencha 2
-
25 Apr 2012 2:39 AM #2
-
27 Apr 2012 5:03 AM #3
I've not tried it yet, but take a look at the interactions documentation. I assume there's a type of tap gesture that could be caught, which then you can do a
I will be digging into this soon, if this isn't answered by that time I'll post my results.Code:this.get<something>().push(<your next view>)
-
27 Apr 2012 5:08 AM #4
thanx
i got the solution & its working.
i have created a instance of a new page ,where i have to go on slice click,in chart interaction.
-
27 Apr 2012 5:10 AM #5
Could you post some example code? Might as well learn from others

-
27 Apr 2012 5:15 AM #6
suppose my page is new1.js where i have to go on slice click
so i have added the code in chart interaction as
var new2=new Ext.create('sample.view.new1');
new2.show();


Reply With Quote