You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by hu...@apache.org on 2022/03/21 23:33:04 UTC

[royale-asjs] branch develop updated: Fix: DataGridLockedColumn bead was not working with the current Royale version

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

hugoferreira 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 50ecafb  Fix: DataGridLockedColumn bead was not working with the current Royale version
50ecafb is described below

commit 50ecafb93b6f65efe7ff217b0e2655df3fc1f2fd
Author: Hugo Ferreira <hf...@solidsoft.pt>
AuthorDate: Mon Mar 21 23:32:46 2022 +0000

    Fix: DataGridLockedColumn bead was not working with the current Royale version
---
 .../apache/royale/jewel/beads/controls/datagrid/DataGridLockedColumn.as | 2 --
 1 file changed, 2 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/datagrid/DataGridLockedColumn.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/datagrid/DataGridLockedColumn.as
index ea61f76..1473bdf 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/datagrid/DataGridLockedColumn.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/datagrid/DataGridLockedColumn.as
@@ -68,8 +68,6 @@ package org.apache.royale.jewel.beads.controls.datagrid
             var dg:IDataGrid = value as IDataGrid;
 
             view = (dg as UIBase).view as DataGridView;
-            (view.header as DataGridButtonBar).style = "overflow: visible";
-            (view.listArea as DataGridListArea).style = "overflow: visible";
             view.header.addEventListener("headerLayout", headerLayoutHandler);
 		}