You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ca...@apache.org on 2013/05/01 19:25:06 UTC

[4/6] git commit: [flex-asjs] - Selection Model should send selectedIndexChanged as well when selectedItem changed

Selection Model should send selectedIndexChanged as well when selectedItem changed


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

Branch: refs/heads/feature/createjs-checkbox
Commit: cc79edbed710ac39615ff4600325b8ce690e9748
Parents: fe54045
Author: Alex Harui <ah...@apache.org>
Authored: Tue Apr 30 07:43:15 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Apr 30 07:43:15 2013 -0700

----------------------------------------------------------------------
 .../beads/models/ArraySelectionModel.as            |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cc79edbe/frameworks/as/src/org/apache/flex/html/staticControls/beads/models/ArraySelectionModel.as
----------------------------------------------------------------------
diff --git a/frameworks/as/src/org/apache/flex/html/staticControls/beads/models/ArraySelectionModel.as b/frameworks/as/src/org/apache/flex/html/staticControls/beads/models/ArraySelectionModel.as
index 600f84e..1e1aade 100644
--- a/frameworks/as/src/org/apache/flex/html/staticControls/beads/models/ArraySelectionModel.as
+++ b/frameworks/as/src/org/apache/flex/html/staticControls/beads/models/ArraySelectionModel.as
@@ -87,6 +87,7 @@ package org.apache.flex.html.staticControls.beads.models
 				}
 			}
 			dispatchEvent(new Event("selectedItemChanged"));			
+			dispatchEvent(new Event("selectedIndexChanged"));			
 		}
 	}
 }
\ No newline at end of file