-
21 Jul 2010 1:56 AM #1
[FNR] Portal + Drag/Drop + bad startColumn
[FNR] Portal + Drag/Drop + bad startColumn
Hi,
Sometimes during a drag and drop, the start column has a bad value
In portal.java:
protected void onDragStart(DragEvent de) {
...
startCol = getColumn(de.getClientX());
...
}
de.getClientX() return current X position, the mouse can have move between DragStart and call to this method.
I think you can use startCol = getColumn(de.getX());
or startCol = getPortletColumn(active)
for always have a good startColumn.
thanx.
-
21 Jul 2010 2:02 AM #2
Fixed in SVN as or revision 2150.
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[FNR] Portal Drag Drop Bug
By yafmbl in forum Ext GWT: Bugs (2.x)Replies: 3Last Post: 19 Apr 2010, 5:50 AM -
Portal drag/drop example
By irwin in forum Ext 2.x: Help & DiscussionReplies: 7Last Post: 1 Apr 2010, 2:40 PM -
portal example drag/drop
By irwin in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 3 Jun 2009, 12:23 PM -
Drag and Drop with portal
By pdah in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 10 Dec 2007, 3:07 AM -
Drag and Drop with portal
By pdah in forum Ext 1.x: Help & DiscussionReplies: 0Last Post: 9 Dec 2007, 10:07 PM


Reply With Quote