You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/10/14 01:48:34 UTC

[1/5] git commit: [flex-sdk] [refs/heads/release4.11.0] - FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed )

Updated Branches:
  refs/heads/release4.11.0 06cf2f871 -> fb3fe2ea1


FIX https://issues.apache.org/jira/browse/FLEX-33813 (DataGrid goes blank when scrolled and dataProvider is changed )


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/fc91d4b9
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/fc91d4b9
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/fc91d4b9

Branch: refs/heads/release4.11.0
Commit: fc91d4b94f6027a7de781c9b00986f56941b4fce
Parents: 5ae5a84
Author: mamsellem <ma...@systar.com>
Authored: Fri Oct 11 15:54:01 2013 +0200
Committer: mamsellem <ma...@systar.com>
Committed: Fri Oct 11 15:54:01 2013 +0200

----------------------------------------------------------------------
 frameworks/projects/spark/src/spark/components/Grid.as | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/fc91d4b9/frameworks/projects/spark/src/spark/components/Grid.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/Grid.as b/frameworks/projects/spark/src/spark/components/Grid.as
index c31e781..7deb6eb 100644
--- a/frameworks/projects/spark/src/spark/components/Grid.as
+++ b/frameworks/projects/spark/src/spark/components/Grid.as
@@ -5445,8 +5445,9 @@ public class Grid extends Group implements IDataGridElement, IDataProviderEnhanc
                 // No caret item so reset caret and vsp.
                 else 
                 {
-                    caretRowIndex = _dataProvider.length > 0 ? 0 : -1; 
-                    verticalScrollPosition = 0;
+                    caretRowIndex = _dataProvider.length > 0 ? 0 : -1;
+                   validateNow();
+                   verticalScrollPosition = 0;
                 }
                 
                 break;


[3/5] git commit: [flex-sdk] [refs/heads/release4.11.0] - Fix https://issues.apache.org/jira/browse/FLEX-33818 (Spark Datagrid column resize and sort bug when releasing mouse outside of headers)

Posted by jm...@apache.org.
Fix https://issues.apache.org/jira/browse/FLEX-33818 (Spark Datagrid column resize and sort bug when releasing mouse outside of headers)


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/3aef3953
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/3aef3953
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/3aef3953

Branch: refs/heads/release4.11.0
Commit: 3aef395307dc6ce3fa825c6838df21e310938d5b
Parents: e16d783
Author: mamsellem <ma...@systar.com>
Authored: Mon Oct 14 00:32:31 2013 +0200
Committer: mamsellem <ma...@systar.com>
Committed: Mon Oct 14 00:32:31 2013 +0200

----------------------------------------------------------------------
 .../spark/src/spark/components/GridColumnHeaderGroup.as        | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aef3953/frameworks/projects/spark/src/spark/components/GridColumnHeaderGroup.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/GridColumnHeaderGroup.as b/frameworks/projects/spark/src/spark/components/GridColumnHeaderGroup.as
index 43d5951..bd62162 100644
--- a/frameworks/projects/spark/src/spark/components/GridColumnHeaderGroup.as
+++ b/frameworks/projects/spark/src/spark/components/GridColumnHeaderGroup.as
@@ -1064,8 +1064,10 @@ public class GridColumnHeaderGroup extends Group implements IDataGridElement
     {
         const eventHeaderCP:CellPosition = new CellPosition();
         const eventHeaderXY:Point = new Point();
-        if (!eventToHeaderLocations(event, eventHeaderCP, eventHeaderXY))
-            return;
+         // mouse can be released outside of header , so don't check    cf.    https://issues.apache.org/jira/browse/FLEX-33818
+          if (event.type != MouseEvent.MOUSE_UP &&  !eventToHeaderLocations(event, eventHeaderCP, eventHeaderXY))
+                return;
+
 
         const eventSeparatorIndex:int = eventHeaderCP.rowIndex;
         const eventColumnIndex:int = (eventSeparatorIndex == -1) ? eventHeaderCP.columnIndex : -1;


[4/5] git commit: [flex-sdk] [refs/heads/release4.11.0] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop

Posted by jm...@apache.org.
Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/0234ed54
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/0234ed54
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/0234ed54

Branch: refs/heads/release4.11.0
Commit: 0234ed54f9533791508d29b9baa229e24747472a
Parents: 3aef395 1d5fa79
Author: mamsellem <ma...@systar.com>
Authored: Mon Oct 14 00:55:23 2013 +0200
Committer: mamsellem <ma...@systar.com>
Committed: Mon Oct 14 00:55:23 2013 +0200

----------------------------------------------------------------------
 .gitignore                                      |   1 -
 RELEASE_NOTES                                   |   2 +-
 flex-sdk-description.xml                        |   2 +-
 ide/flashbuilder/config/air-config.xml          | 443 ++++++++++++++++++
 ide/flashbuilder/config/airmobile-config.xml    | 365 +++++++++++++++
 ide/flashbuilder/config/flex-config.xml         | 447 +++++++++++++++++++
 ide/flashbuilder/makeApacheFlexForIDE.bat       |   4 +-
 .../Styles/RadioButton_Mirroring_Styles.mxml    |   1 +
 .../RadioButton/swfs/RadioButton_Basic2.mxml    |   2 +-
 9 files changed, 1261 insertions(+), 6 deletions(-)
----------------------------------------------------------------------



[2/5] git commit: [flex-sdk] [refs/heads/release4.11.0] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop

Posted by jm...@apache.org.
Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/e16d783e
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/e16d783e
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/e16d783e

Branch: refs/heads/release4.11.0
Commit: e16d783ec618bea94772a7c377a5d3b1930771bd
Parents: fc91d4b 09c4e92
Author: mamsellem <ma...@systar.com>
Authored: Sun Oct 13 00:45:59 2013 +0200
Committer: mamsellem <ma...@systar.com>
Committed: Sun Oct 13 00:45:59 2013 +0200

----------------------------------------------------------------------
 README                                   | 24 ++++++++++++------------
 RELEASE_NOTES                            |  8 ++++++--
 ide/addAIRtoSDK.sh                       |  5 -----
 ide/checkAllPlayerGlobals.sh             |  2 +-
 ide/flashbuilder/makeApacheFlexForIDE.sh |  4 ++--
 jenkins.xml                              |  2 +-
 6 files changed, 22 insertions(+), 23 deletions(-)
----------------------------------------------------------------------



[5/5] git commit: [flex-sdk] [refs/heads/release4.11.0] - Merge commit '0234ed54f9533791508d29b9baa229e24747472a' into release4.11.0

Posted by jm...@apache.org.
Merge commit '0234ed54f9533791508d29b9baa229e24747472a' into release4.11.0


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/fb3fe2ea
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/fb3fe2ea
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/fb3fe2ea

Branch: refs/heads/release4.11.0
Commit: fb3fe2ea1288806896d79da3a742d7d54603b7a2
Parents: 06cf2f8 0234ed5
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Oct 14 10:43:59 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Oct 14 10:43:59 2013 +1100

----------------------------------------------------------------------
 frameworks/projects/spark/src/spark/components/Grid.as         | 5 +++--
 .../spark/src/spark/components/GridColumnHeaderGroup.as        | 6 ++++--
 2 files changed, 7 insertions(+), 4 deletions(-)
----------------------------------------------------------------------