You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by pu...@apache.org on 2021/09/21 14:23:36 UTC

[royale-asjs] branch develop updated: Added url in LoaderInfo.as and Added itemEditorInstance in DataGrid.as

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new a3885a9  Added url in LoaderInfo.as and Added itemEditorInstance in DataGrid.as
a3885a9 is described below

commit a3885a9c18edf8977d88dba65b6b8143e04dc845
Author: pashminakazi <pa...@gmail.com>
AuthorDate: Tue Sep 21 07:23:24 2021 -0700

    Added url in LoaderInfo.as and Added itemEditorInstance in DataGrid.as
---
 frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as | 4 +++-
 .../projects/MXRoyale/src/main/royale/mx/display/LoaderInfo.as       | 5 +++++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as
index 1bcfa21..44625ae 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as
@@ -748,7 +748,9 @@ public class DataGrid extends DataGridListBase/*ListBase*/ implements IDataGrid/
     //  Variables
     //
     //--------------------------------------------------------------------------
-
+	
+	
+	 public var itemEditorInstance:IListItemRenderer;
 
     /**
      *  A flag that indicates whether the user can change the size of the
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/display/LoaderInfo.as b/frameworks/projects/MXRoyale/src/main/royale/mx/display/LoaderInfo.as
index bdcfb9c..31be896 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/display/LoaderInfo.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/display/LoaderInfo.as
@@ -52,6 +52,11 @@ package mx.display
             // TODO this should be the nominal height, whatever that means
             return _loader.content.height;
         }
+		
+		public var _url:String = "";
+		public function get url():String {
+			return _url;
+		}
 
     }
 }