-
5 Sep 2012 4:54 PM #1
Ext.util.Point.fromEvent Doesn't Accept Ext.EventObject
Ext.util.Point.fromEvent Doesn't Accept Ext.EventObject
The documentation for Ext.util.Point notes that you can use the static method fromEvent like this:
Handy, but if I have:Code:var point = Ext.util.Point.fromEvent(e);
the Point is not initialized properly. The problem appears to be that e is an instance of Ext.EventObject and that fromEvent will only accept a DOM Event.Code:el.on('click', function(e) { var point = Ext.util.Point.fromEvent(e); ... });
It would be nice if fromEvent could accept either a DOM Event or an instance of Ext.EventObject. Yes, people can use e.getPoint(), but I think one or both of the following changes should be made:
* Update the documentation for Ext.util.Point.fromEvent to mention that you can call Ext.EventObject.getPoint
* Support passing both DOM Event objects or Ext.EventObject instances to Ext.util.Point.fromEvent
Test case: http://jsfiddle.net/wrumsby/9YF3u/
-
19 Sep 2012 11:19 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 434
This has been fixed for 4.1.3
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTJSIV-7174
in
4.1.4.


Reply With Quote