You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/01/30 21:01:42 UTC

[royale-asjs] branch develop updated (e5dcddd -> 14b3e47)

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


    from e5dcddd  Improved the DataGrid for Express and the Express example.
     new a5fe4ba  make beads the default property for application
     new 14b3e47  binding event for DG selectedIndex

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../Basic/src/main/royale/org/apache/royale/core/ApplicationBase.as  | 5 ++++-
 .../Basic/src/main/royale/org/apache/royale/html/DataGrid.as         | 1 +
 2 files changed, 5 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
aharui@apache.org.

[royale-asjs] 01/02: make beads the default property for application

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit a5fe4ba5f1bd7cf4d1eca7f9ebaba3054b5087fe
Author: Alex Harui <ah...@apache.org>
AuthorDate: Tue Jan 30 12:59:56 2018 -0800

    make beads the default property for application
---
 .../Basic/src/main/royale/org/apache/royale/core/ApplicationBase.as  | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/ApplicationBase.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/ApplicationBase.as
index 5fcd493..cd7d2f7 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/ApplicationBase.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/ApplicationBase.as
@@ -29,7 +29,8 @@ package org.apache.royale.core
         import org.apache.royale.events.Event;
     }
 
-        
+    [DefaultProperty("beads")]
+    
     /**
      *  This is a platform-dependent base class
      *  for Application
@@ -79,6 +80,8 @@ package org.apache.royale.core
         }
    	}
     
+    [DefaultProperty("beads")]
+    
     COMPILE::JS
     public class ApplicationBase extends HTMLElementWrapper implements IFlexInfo
     {

-- 
To stop receiving notification emails like this one, please contact
aharui@apache.org.

[royale-asjs] 02/02: binding event for DG selectedIndex

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 14b3e471c60c85e304b39c49a9d435c604d1d9d1
Author: Alex Harui <ah...@apache.org>
AuthorDate: Tue Jan 30 13:00:27 2018 -0800

    binding event for DG selectedIndex
---
 .../projects/Basic/src/main/royale/org/apache/royale/html/DataGrid.as    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/DataGrid.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/DataGrid.as
index 0557c7b..8e4ee9f 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/DataGrid.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/DataGrid.as
@@ -109,6 +109,7 @@ package org.apache.royale.html
 		 *  @playerversion AIR 2.6
 		 *  @productversion Royale 0.0
 		 */
+		[Bindable("change")]
 		public function get selectedIndex():int
 		{
 			return IDataGridModel(model).selectedIndex;

-- 
To stop receiving notification emails like this one, please contact
aharui@apache.org.