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 d858d3f  change Tour de Jewel examples to use new activableName 
instead of ids
d858d3f is described below

commit d858d3f81393c218ef4f584068fd33624fa38419
Author: Carlos Rovira <carlosrov...@apache.org>
AuthorDate: Wed Dec 26 10:51:22 2018 +0100

    change Tour de Jewel examples to use new activableName instead of ids
---
 .../TourDeJewel/src/main/royale/MainContent.mxml   | 52 +++++++++++-----------
 .../src/main/royale/TabBarPlayGround.mxml          |  8 ++--
 .../src/main/royale/WizardPlayGround.mxml          | 10 ++---
 3 files changed, 35 insertions(+), 35 deletions(-)

diff --git a/examples/royale/TourDeJewel/src/main/royale/MainContent.mxml 
b/examples/royale/TourDeJewel/src/main/royale/MainContent.mxml
index 729207e..fdd7358 100644
--- a/examples/royale/TourDeJewel/src/main/royale/MainContent.mxml
+++ b/examples/royale/TourDeJewel/src/main/royale/MainContent.mxml
@@ -120,32 +120,32 @@ limitations under the License.
     </j:TopAppBar>
 
     <j:ApplicationMainContent id="main" hasTopAppBar="true" 
className="mainContent">
-        <local:WelcomeSection id="welcome_panel" isActive="true"/>
-        <local:AlertPlayGround id="alert_panel"/>
-        <local:ButtonPlayGround id="button_panel"/>
-        <local:ImagePlayGround id="image_panel"/>
-        <local:NumericStepperPlayGround id="numericstepper_panel"/>
-        <local:DateComponentsPlayGround id="datecomponents_panel"/>
-        <local:ComboBoxPlayGround id="combobox_panel"/>
-        <local:CheckBoxPlayGround id="checkbox_panel"/>
-        <local:MiscelaneaPlayGound id="miscelanea_panel"/>
-        <local:HeadingsAndText id="text_panel"/>
-        <local:LabelPlayGround id="label_panel"/>
-        <local:ListPlayGround id="list_panel"/>
-        <local:RadioButtonPlayGround id="radiobutton_panel"/>
-        <local:SliderPlayGround id="slider_panel"/>
-        <local:TextInputPlayGround id="textinput_panel"/>
-        <local:GridPlayGround id="grid_panel"/>
-        <local:CardPlayGround id="card_panel"/>
-        <local:TablePlayGround id="tables_panel"/>
-        <local:FormsValidationPlayGround id="form_validation_panel"/>
-        <local:DropDownListPlayGround id="dropdownlist_panel"/>
-        <local:SnackbarPlayGround id="snackbar_panel"/>
-        <local:TabBarPlayGround id="tabbar_panel"/>
-        <local:ViewStatesPlayGround id="viewstates_panel"/>
-        <local:LayoutsPlayGround id="layouts_panel"/>
-        <local:WizardPlayGround id="wizards_panel"/>
-        <local:PopUpViewPlayGround id="popupview_panel"/>
+        <local:WelcomeSection activableName="welcome_panel" isActive="true"/>
+        <local:AlertPlayGround activableName="alert_panel"/>
+        <local:ButtonPlayGround activableName="button_panel"/>
+        <local:ImagePlayGround activableName="image_panel"/>
+        <local:NumericStepperPlayGround activableName="numericstepper_panel"/>
+        <local:DateComponentsPlayGround activableName="datecomponents_panel"/>
+        <local:ComboBoxPlayGround activableName="combobox_panel"/>
+        <local:CheckBoxPlayGround activableName="checkbox_panel"/>
+        <local:MiscelaneaPlayGound activableName="miscelanea_panel"/>
+        <local:HeadingsAndText activableName="text_panel"/>
+        <local:LabelPlayGround activableName="label_panel"/>
+        <local:ListPlayGround activableName="list_panel"/>
+        <local:RadioButtonPlayGround activableName="radiobutton_panel"/>
+        <local:SliderPlayGround activableName="slider_panel"/>
+        <local:TextInputPlayGround activableName="textinput_panel"/>
+        <local:GridPlayGround activableName="grid_panel"/>
+        <local:CardPlayGround activableName="card_panel"/>
+        <local:TablePlayGround activableName="tables_panel"/>
+        <local:FormsValidationPlayGround 
activableName="form_validation_panel"/>
+        <local:DropDownListPlayGround activableName="dropdownlist_panel"/>
+        <local:SnackbarPlayGround activableName="snackbar_panel"/>
+        <local:TabBarPlayGround activableName="tabbar_panel"/>
+        <local:ViewStatesPlayGround activableName="viewstates_panel"/>
+        <local:LayoutsPlayGround activableName="layouts_panel"/>
+        <local:WizardPlayGround activableName="wizards_panel"/>
+        <local:PopUpViewPlayGround activableName="popupview_panel"/>
     </j:ApplicationMainContent>
 
     <!-- <j:ResponsiveSizeMonitor/> -->
diff --git a/examples/royale/TourDeJewel/src/main/royale/TabBarPlayGround.mxml 
b/examples/royale/TourDeJewel/src/main/royale/TabBarPlayGround.mxml
index 7e8a2c3..866aef4 100644
--- a/examples/royale/TourDeJewel/src/main/royale/TabBarPlayGround.mxml
+++ b/examples/royale/TourDeJewel/src/main/royale/TabBarPlayGround.mxml
@@ -66,16 +66,16 @@ limitations under the License.
                                        </j:beads>
                                </j:TabBar>
                                <j:TabBarContent id="tabcontent">
-                                       <j:SectionContent id="tab1" 
isActive="true">
+                                       <j:SectionContent activableName="tab1" 
isActive="true">
                                                <j:Label text="Tab 1"/>
                                        </j:SectionContent>
-                                       <j:SectionContent id="tab2">
+                                       <j:SectionContent activableName="tab2">
                                                <j:Label text="Tab 2"/>
                                        </j:SectionContent>
-                                       <j:SectionContent id="tab3">
+                                       <j:SectionContent activableName="tab3">
                                                <j:Label text="Tab 3"/>
                                        </j:SectionContent>
-                                       <j:SectionContent id="tab4">
+                                       <j:SectionContent activableName="tab4">
                                                <j:Label text="Tab 4"/>
                                        </j:SectionContent>
                                </j:TabBarContent>
diff --git a/examples/royale/TourDeJewel/src/main/royale/WizardPlayGround.mxml 
b/examples/royale/TourDeJewel/src/main/royale/WizardPlayGround.mxml
index 245b8e5..61ff459 100644
--- a/examples/royale/TourDeJewel/src/main/royale/WizardPlayGround.mxml
+++ b/examples/royale/TourDeJewel/src/main/royale/WizardPlayGround.mxml
@@ -61,7 +61,7 @@ limitations under the License.
                                </j:Group>
                        </j:nextButton>
 
-                       <j:WizardPage id="page1">
+                       <j:WizardPage activableName="page1">
                                <views:step>
                                        <j:WizardStep name="page1" 
nextStep="page2" initialPage="true" stepLabel="Page 1"/>
                                </views:step>
@@ -70,7 +70,7 @@ limitations under the License.
 
                        </j:WizardPage>
                        
-                       <j:WizardPage id="page2">
+                       <j:WizardPage activableName="page2">
                                <views:step>
                                        <j:WizardStep id="sl" name="page2" 
previousStep="page1" nextStep="page3" stepLabel="Page 2"/>
                                </views:step>
@@ -85,7 +85,7 @@ limitations under the License.
 
                        </j:WizardPage>
                        
-                       <j:WizardPage id="page3">
+                       <j:WizardPage activableName="page3">
                                <views:step>
                                        <j:WizardStep name="page3" 
previousStep="page2" nextStep="page4" stepLabel="Page 3"/>
                                </views:step>
@@ -99,7 +99,7 @@ limitations under the License.
 
                        </j:WizardPage>
                        
-                       <j:WizardPage id="page4">
+                       <j:WizardPage localId="page4" activableName="page4">
                                <views:step>
                                        <j:WizardStep name="page4" 
previousStep="page3" nextStep="page5" stepLabel="Page 4"/>
                                </views:step>
@@ -115,7 +115,7 @@ limitations under the License.
 
                        </j:WizardPage>
                        
-                       <j:WizardPage id="page5">
+                       <j:WizardPage activableName="page5">
                                <views:step>
                                        <j:WizardStep name="page5" 
previousStep="page4" stepLabel="Page 5"/>
                                </views:step>

Reply via email to