[
https://issues.apache.org/jira/browse/FLEX-33898?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alex Trost updated FLEX-33898:
------------------------------
Description:
In DataGrid when hovering the column separator the mouse cursor changes to
StrechCursor then when you start to drag and accidentally move out of the
separator the mouse cursor used to change back to the regular cursor.
Now it does not. The change between 4.6 and 4.10 is :
protected function separator_rollOutHandler(event:GridEvent):void
{
if (!enabled || resizeColumn)
return;
cursorManager.removeCursor(stretchCursorID);
}
The addition of the || resizeColumn ( no clue why it was added here)
was:
In DataGrid when hovering the column separator the mouse cursor changes to
StrechCursor then when you start to drag and accidentally move out of the
separator the mouse cursor used to change back to the regular cursor.
Now it does not. The change between 4.6 and 4.10 is :
protected function separator_rollOutHandler(event:GridEvent):void
{
if (!enabled || resizeColumn)
return;
cursorManager.removeCursor(stretchCursorID);
}
The addition of the || resizeColimn ( no clue why it was added here)
> Stretch Cursor is not removed when should be (DataGrid)
> -------------------------------------------------------
>
> Key: FLEX-33898
> URL: https://issues.apache.org/jira/browse/FLEX-33898
> Project: Apache Flex
> Issue Type: Bug
> Components: Spark: DataGrid
> Affects Versions: Apache Flex 4.10.0
> Environment: Windows. All browsers. Don't this this is relevant.
> Reporter: Alex Trost
> Labels: cursor, datagrid, resize, resizeColumn, stretchCursorID
>
> In DataGrid when hovering the column separator the mouse cursor changes to
> StrechCursor then when you start to drag and accidentally move out of the
> separator the mouse cursor used to change back to the regular cursor.
> Now it does not. The change between 4.6 and 4.10 is :
> protected function separator_rollOutHandler(event:GridEvent):void
> {
> if (!enabled || resizeColumn)
> return;
>
> cursorManager.removeCursor(stretchCursorID);
> }
> The addition of the || resizeColumn ( no clue why it was added here)
--
This message was sent by Atlassian JIRA
(v6.1#6144)