This is an automated email from the ASF dual-hosted git repository.
carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git
The following commit(s) were added to refs/heads/master by this push:
new c4ecca5 more jewel group changes
c4ecca5 is described below
commit c4ecca5e56ec7722b6efce13952a9f3aef895e6e
Author: Carlos Rovira <[email protected]>
AuthorDate: Thu Aug 13 11:36:52 2020 +0200
more jewel group changes
---
component-sets/jewel.md | 14 +++++++-------
component-sets/jewel/jewel-group.md | 6 ++++--
2 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/component-sets/jewel.md b/component-sets/jewel.md
index cbb8475..b3bbf4c 100644
--- a/component-sets/jewel.md
+++ b/component-sets/jewel.md
@@ -55,13 +55,13 @@ For the browsers, Apache Royale generates [ECMAScript
version 5 (ES5)](https://e
## Components
If the component name is a link, you can click it to see more information
about the component. We will update this list as we add information.
-| Type | Name |
Description
| Available SDK | State |
-|------------------ |----------------------------------------------
|---------------------------------------------------------------------------------
|------------------ |-------------- |
-| __Containers__ | ButtonBar |
Container that displays a series of buttons
| 0.9.7 | Complete |
-| | Card | Container
that surrounds other components | 0.9.4
| |
-| | [Container](component-sets/jewel/container) | Container
that surrounds other components | 0.9.4
| |
-| | [DataContainer](component-sets/jewel/datacontainer)| A
Container that generates child elements based on a data provider | 0.9.4
| |
-| | [Group](component-sets/jewel/group) | The most simple
container that groups other components | 0.9.4
| |
+| Type | Name
| Description
| Available SDK | State |
+|------------------ |------------------------------------------------------
|---------------------------------------------------------------------------------
|------------------ |-------------- |
+| __Containers__ | ButtonBar
| Container that displays a series of buttons
| 0.9.7 | Complete |
+| | Card |
Content (text, images,...) container with optional title and actions zones
| 0.9.4 | Complete |
+| | [Container](component-sets/jewel/container) |
Container that surrounds other components
| 0.9.4 | Complete |
+| | [DataContainer](component-sets/jewel/datacontainer) | A
Container that creates child elements dynamically based on a data provider
| 0.9.4 | Complete |
+| | [Group](component-sets/jewel/group) |
The most simple container that groups other components
| 0.9.4 | Complete |
| | Grid | Container that uses Grid
Layout and needs other immediate children to work as cells and host content.
| 0.9.4 | Complete |
| | SimpleTable | A basic HTML table that can be
declared in MXML |
0.9.4 | Complete |
| | Table | A complex HTML table
element filled from a data source. Cells are ItemRenderers.
| 0.9.4 | In Progress |
diff --git a/component-sets/jewel/jewel-group.md
b/component-sets/jewel/jewel-group.md
index cc80fe9..a6b455b 100644
--- a/component-sets/jewel/jewel-group.md
+++ b/component-sets/jewel/jewel-group.md
@@ -36,9 +36,11 @@ Available since version __0.9.4__.
## Overview
-The Jewel Group class provides a light-weight container for visual elements.
By default the Group does not have a layout, allowing its children to be sized
and positioned allowing its children to be sized and positioned using absolute
positioning.
+The Jewel Group class provides a light-weight container for visual elements.
By default the Group does not have a layout, allowing its children to be sized
and positioned allowing its children to be sized and positioned using absolute
positioning. You can swap the layout for any other one available making
children arrange in different ways (i.e: horizontal, vertical,...)
-Group doesn't have any chrome or visuals just position inner childs. You can
swap the layout for any other one available making children arrange in
different ways (i.e: horizontal, vertical,...)
+The Jewel Group class provides a light-weight container for visual elements.
By default Group have a Basiclayout, allowing its children to be positioned
using absolute values (Notice Basic version doesn't provide any layout at all).
Group doesn't clip content so elements inside the group aren't hidden far
beyond group boundaries. Group doesn't have any chrome or visuals just position
inner childs.
+
+Also, no scrolling support is built in Group. For scrolling and clipping you
can use Jewel Container
## Example of use