-
23 Dec 2009 12:18 PM #1
[CLOSED] DragFail event set to null
[CLOSED] DragFail event set to null
I looked around forums to see if this was already resolved, didn't find anything so posting in hopes it's not a duplicate issue.
My Current version: GXT 2.1.0
Class: com.extjs.gxt.ui.client.event.Events
The following:
should be changed toCode:/** * DragFail event type. */ public static final EventType DragFail = null;
otherwise the DNDManager's call to source.fireEvent(Events.DragFail, event); throws an exception. Not sure why this is being set to null.Code:/** * DragFail event type. */ public static final EventType DragFail = new EventType();
-
23 Dec 2009 12:19 PM #2
This was already reported indirecly. Marking this as closed.
-
20 Jan 2010 9:38 PM #3
This bug is fixed in the releases/2.1 branch and is now available in the 2.1.1-beta release available here.
-
20 Jan 2010 10:10 PM #4
Just from hot downloaded sources
/**
* DragFail event type.
*/
public static final EventType DragFail = null;
-
20 Jan 2010 10:42 PM #5
The new build replaces the Events class from a different location to support GWT 1.7 and 2.0. The other location had the old Events class. Given this is a beta, I replaced the files. You can just download them again.
-
21 Jan 2010 12:48 AM #6
Maybe make sense to update svn - cause I cannot found this fixed in svn/releases/2.1
-
21 Jan 2010 12:52 AM #7
Code:r1881 | darrellmeyer | 2010-01-21 02:32:15 EST Changed paths: M /releases/2.1/config/build/Events.java M /releases/2.1/config/build/Events.java-17 M /releases/2.1/user/src/com/extjs/gxt/ui/client/event/Events.java [bug] Fixed Events DragFail ----------------------------------------------------------------------------
-
21 Jan 2010 1:22 AM #8
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote