This is an automated email from the ASF dual-hosted git repository. carlosrovira 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 b58fd7e update list example new 77e4513 Merge branch 'develop' of https://github.com/apache/royale-asjs into develop b58fd7e is described below commit b58fd7e011c1e28c43cd646488173090db859ad9 Author: Carlos Rovira <carlosrov...@apache.org> AuthorDate: Thu Aug 23 13:47:05 2018 +0200 update list example --- .../JewelExample/src/main/royale/ListPlayGround.mxml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/royale/JewelExample/src/main/royale/ListPlayGround.mxml b/examples/royale/JewelExample/src/main/royale/ListPlayGround.mxml index 4a4f5c7..ec24b0d 100644 --- a/examples/royale/JewelExample/src/main/royale/ListPlayGround.mxml +++ b/examples/royale/JewelExample/src/main/royale/ListPlayGround.mxml @@ -145,15 +145,15 @@ limitations under the License. tabletNumerator="1" tabletDenominator="2" phoneNumerator="1" phoneDenominator="1"> <j:Card> - <html:H3 text="Jewel DataContainer"/> + <html:H3 text="Jewel List (Horizontal)"/> <j:List id="alist" percentWidth="100" height="100"> - <!-- <j:beads> - <j:HorizontalLayout itemsExpand="true" /> - </j:beads> --> - <j:dataProvider> - <js:ArrayList id="avengersCharacters" source="[Iron Man, Hulk, Thor, Captain America]" /> - </j:dataProvider> -</j:List> + <j:beads> + <j:HorizontalLayout itemsExpand="true" /> + </j:beads> + <j:dataProvider> + <js:ArrayList id="avengersCharacters" source="[Iron Man, Hulk, Thor, Captain America, Hawkeye]" /> + </j:dataProvider> + </j:List> </j:Card> </j:GridCell> </j:Grid>