You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2020/10/26 10:54:38 UTC

[royale-asjs] branch develop updated (5298121 -> 45cd462)

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

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


    from 5298121  Revert IE11 event changes to ElementWrapper, added doubleclick support in IEEventAdapterBead
     new 7e4ac1f  Moved stub to base class
     new 6e9b4d2  Fix illegal override in flash
     new 45cd462  Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

The 3 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:
 .../src/main/royale/spark/components/List.as       |  4 ---
 .../spark/components/supportClasses/ListBase.as    | 37 ++++++++++++++++++++++
 2 files changed, 37 insertions(+), 4 deletions(-)


[royale-asjs] 01/03: Moved stub to base class

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

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

commit 7e4ac1fa7d8fc3b562462dae36f469825e30fef7
Author: Yishay Weiss <yi...@hotmail.com>
AuthorDate: Sun Oct 25 19:28:12 2020 +0000

    Moved stub to base class
---
 .../src/main/royale/spark/components/List.as       |  4 ---
 .../spark/components/supportClasses/ListBase.as    | 37 ++++++++++++++++++++++
 2 files changed, 37 insertions(+), 4 deletions(-)

diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/List.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/List.as
index e708e3f..3c1fded 100644
--- a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/List.as
+++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/List.as
@@ -617,10 +617,6 @@ public class List extends ListBase implements IFocusManagerComponent
 		}
 	}
 
-    public function set itemRendererFunction(value:Function):void
-    {
-	// not implemented
-    }
     //----------------------------------
     //  hasFocusableChildren
     //----------------------------------
diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/supportClasses/ListBase.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/supportClasses/ListBase.as
index 8a0f3db..39c602d 100644
--- a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/supportClasses/ListBase.as
+++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/supportClasses/ListBase.as
@@ -566,6 +566,43 @@ public class ListBase  extends SkinnableContainer
         factory.itemRendererFactory = value;
     }
     
+
+    //----------------------------------
+    //  itemRendererFunction
+    //----------------------------------
+    
+    [Inspectable(category="Data")]
+    
+    /**
+     *  @copy spark.components.DataGroup#itemRendererFunction
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 10
+     *  @playerversion AIR 1.5
+     *  @productversion Flex 4
+     */
+    public function get itemRendererFunction():Function // not implemeneted
+    {
+        //return (dataGroup) 
+            //? dataGroup.itemRendererFunction 
+            //: dataGroupProperties.itemRendererFunction;
+	    return null;
+    }
+    
+    /**
+     *  @private
+     */
+    public function set itemRendererFunction(value:Function):void // not implemeneted
+    {
+        //if (dataGroup)
+        //{
+            //dataGroup.itemRendererFunction = value;
+            //dataGroupProperties = BitFlagUtil.update(dataGroupProperties as uint, 
+                                                     //ITEM_RENDERER_FUNCTION_PROPERTY_FLAG, true);
+        //}
+        //else
+            //dataGroupProperties.itemRendererFunction = value;
+    }
     /**
      *  @private
      */


[royale-asjs] 03/03: Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

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

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

commit 45cd462ddf8a54f8121734ebb403abd4597ed8a0
Merge: 6e9b4d2 5298121
Author: Yishay Weiss <yi...@hotmail.com>
AuthorDate: Mon Oct 26 10:52:03 2020 +0000

    Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

 .../royale/itemRenderers/IconDataGridItemRenderer.mxml |  2 +-
 .../org/apache/royale/html/beads/IEEventAdapterBead.as |  2 ++
 .../royale/org/apache/royale/core/ElementWrapper.as    | 10 +---------
 .../jewel/beads/controls/combobox/SearchFilter.as      | 18 ++++++++++++++++++
 .../controls/datagrid/DataGridColumnLabelsChange.as    |  7 ++++---
 .../jewel/beads/controls/datagrid/DataGridSort.as      | 13 +++++++------
 .../supportClasses/datagrid/DataGridColumnList.as      | 10 +++++-----
 .../supportClasses/datagrid/IDataGridColumnList.as     |  2 +-
 .../controls/dataGridClasses/DataGridItemRenderer.as   |  3 ++-
 9 files changed, 41 insertions(+), 26 deletions(-)


[royale-asjs] 02/03: Fix illegal override in flash

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

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

commit 6e9b4d2026352ba25263a059e76afefc76d9af94
Author: Yishay Weiss <yi...@hotmail.com>
AuthorDate: Mon Oct 26 10:51:47 2020 +0000

    Fix illegal override in flash
---
 .../src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as
index fd1dd2b..d6d02ca 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/dataGridClasses/DataGridItemRenderer.as
@@ -240,7 +240,9 @@ public class DataGridItemRenderer extends StringItemRenderer
         callLater(dispatchUpdateComplete); 
     }
 
+    COMPILE::JS
     public function set useHandCursor(value:Boolean):void {} // not implemented
+    COMPILE::JS
     public function set buttonMode(value:Boolean):void {} // not implemented
     public function set focusEnabled(value:Boolean):void {} // not implemented