-
26 Jul 2012 3:46 AM #11
Cool
Cool
I agree that it is cool component, but extjs component should work everywhere in all browsers. And it is very difficalt to do that ... I see, nevermind it's very exciting component
.
-
12 Aug 2012 10:08 PM #12
Thank you for the component! It's exactly what I was looking for!

-
13 Aug 2012 11:52 PM #13
Hi Jonasba,
It looks great!
Is this also possible to change this into a sencha touch project?
-
14 Aug 2012 5:30 AM #14
-
19 Aug 2012 5:05 AM #15
-
11 Feb 2013 4:42 AM #16
Hi jonasba
I found your component while I was googlin and I added it to my ExtJs 4 project, it's really awesome!
Later while I was debugging I noticed that each time I zoom in or out i get the following exception with Firebug
After some more googling I substitutedPHP Code:TypeError: event.stopEvent is not a function
event.stopEvent();
withPHP Code:event.stopEvent();
that I found herePHP Code:if (event.stopPropagation) {
event.stopPropagation();
} else {
event.cancelBubble = true;
}
And it seems that now I can zoom in and out without any exception fired.
Hope to get some feedback on this
P.s. The component works perfectly with Firefox, but not with IE8 is there a cross-browser version available?

-
27 Feb 2013 2:44 AM #17
Actually, the problem is that the argument list isn't according to the Ext 4.1 documentation (the demo runs 4.1)
In the click event handlers, use parameterlist as below
and things should work out nicely.Code:zoomOut(btn,event,opts): { ... event.stopEvent(); }
yours,
Magnus.
-
13 Apr 2013 3:55 AM #18
-
3 May 2013 10:42 AM #19
Good job, very interesting your component.
Thanks.
-
11 May 2013 1:50 AM #20
Hi, Magnus
Thanks for the observation. You are correct and I have updated the repository accordingly.
I'm sorry for the late response. I don't really hang out here and don't notice the response. If I don't reply in a timely fashion, you can ping me on IRC (badeball @ efnet, ircnet, freenode) or open an issue on Github.


Reply With Quote