You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/11/02 10:21:25 UTC

[royale-asjs] branch develop updated: fix DropDownList examples in JewelExample

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 4835448  fix DropDownList examples in JewelExample
4835448 is described below

commit 4835448ba64dc7df3aaa9e579676012db4fe83a1
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Nov 2 11:21:18 2018 +0100

    fix DropDownList examples in JewelExample
---
 .../src/main/royale/DropDownListPlayGround.mxml    | 30 ++++++++++++++++++----
 1 file changed, 25 insertions(+), 5 deletions(-)

diff --git a/examples/royale/JewelExample/src/main/royale/DropDownListPlayGround.mxml b/examples/royale/JewelExample/src/main/royale/DropDownListPlayGround.mxml
index 874fc58..8d8d7bf 100644
--- a/examples/royale/JewelExample/src/main/royale/DropDownListPlayGround.mxml
+++ b/examples/royale/JewelExample/src/main/royale/DropDownListPlayGround.mxml
@@ -147,7 +147,11 @@ limitations under the License.
 								tabletNumerator="1" tabletDenominator="3"
 								phoneNumerator="1" phoneDenominator="1"
 								itemsVerticalAlign="itemsCentered" width="290">
-						<j:DropDownList id="watchmenDropDownList" prompt="Select Watchmen..." dataProvider="{listModel.watchmen}" change="watchmenDropDownListHandler(event)"/>
+						<j:DropDownList id="watchmenDropDownList" dataProvider="{listModel.watchmen}" change="watchmenDropDownListHandler(event)">
+							<j:beads>
+								<j:DropDownListTextPrompt prompt="Select Watchmen..."/>
+							</j:beads>
+						</j:DropDownList>
 						<j:Button text="deselect" click="watchmenDropDownList.selectedIndex = -1"/>
 					</j:GridCell>
 					<j:GridCell desktopNumerator="1" desktopDenominator="3"
@@ -181,7 +185,11 @@ limitations under the License.
 								tabletNumerator="1" tabletDenominator="3"
 								phoneNumerator="1" phoneDenominator="1"
 								itemsVerticalAlign="itemsCentered" width="290">
-						<j:DropDownList id="avengersDropDownList" prompt="Select Avengers..." labelField="label" dataProvider="{listModel.avengers}" change="avengersDropDownListHandler(event)"/>
+						<j:DropDownList id="avengersDropDownList" labelField="label" dataProvider="{listModel.avengers}" change="avengersDropDownListHandler(event)">
+							<j:beads>
+								<j:DropDownListTextPrompt prompt="Select Avengers..."/>
+							</j:beads>
+						</j:DropDownList>
 						<j:Button text="deselect" click="avengersDropDownList.selectedIndex = -1"/>
 					</j:GridCell>
 					<j:GridCell desktopNumerator="1" desktopDenominator="3"
@@ -214,7 +222,11 @@ limitations under the License.
 								tabletNumerator="1" tabletDenominator="3"
 								phoneNumerator="1" phoneDenominator="1"
 								itemsVerticalAlign="itemsCentered" width="290">
-						<j:DropDownList id="watchmenDropDownList_withSelectedIndex" selectedIndex="3" prompt="Select Watchmen..." dataProvider="{listModel.watchmen}" change="watchmenDropDownListHandler_withSelectedIndex(event)"/>
+						<j:DropDownList id="watchmenDropDownList_withSelectedIndex" selectedIndex="3" dataProvider="{listModel.watchmen}" change="watchmenDropDownListHandler_withSelectedIndex(event)">
+							<j:beads>
+								<j:DropDownListTextPrompt prompt="Select Watchmen..."/>
+							</j:beads>
+						</j:DropDownList>
 						<j:Button text="deselect" click="watchmenDropDownList_withSelectedIndex.selectedIndex = -1"/>
 					</j:GridCell>
 					<j:GridCell desktopNumerator="1" desktopDenominator="3"
@@ -248,7 +260,11 @@ limitations under the License.
 								tabletNumerator="1" tabletDenominator="3"
 								phoneNumerator="1" phoneDenominator="1"
 								itemsVerticalAlign="itemsCentered" width="290">
-						<j:DropDownList id="avengersDropDownList_withSelectedIndex" selectedIndex="4" prompt="Select Avengers..." labelField="label" dataProvider="{listModel.avengers}" change="avengersDropDownListHandler_withSelectedIndex(event)"/>
+						<j:DropDownList id="avengersDropDownList_withSelectedIndex" selectedIndex="4" labelField="label" dataProvider="{listModel.avengers}" change="avengersDropDownListHandler_withSelectedIndex(event)">
+							<j:beads>
+								<j:DropDownListTextPrompt prompt="Select Avengers..."/>
+							</j:beads>
+						</j:DropDownList>
 						<j:Button text="deselect" click="avengersDropDownList_withSelectedIndex.selectedIndex = -1"/>
 					</j:GridCell>
 					<j:GridCell desktopNumerator="1" desktopDenominator="3"
@@ -281,7 +297,11 @@ limitations under the License.
 								tabletNumerator="1" tabletDenominator="3"
 								phoneNumerator="1" phoneDenominator="1"
 								itemsVerticalAlign="itemsCentered" width="290">
-						<j:DropDownList id="avengersDropDownList_withSelectedItem" selectedItem="{listModel.avengers.getItemAt(4)}"  prompt="Select Avengers..." labelField="label" dataProvider="{listModel.avengers}" change="avengersDropDownListHandler_withSelectedItem(event)"/>
+						<j:DropDownList id="avengersDropDownList_withSelectedItem" selectedItem="{listModel.avengers.getItemAt(4)}" labelField="label" dataProvider="{listModel.avengers}" change="avengersDropDownListHandler_withSelectedItem(event)">
+							<j:beads>
+								<j:DropDownListTextPrompt prompt="Select Avengers..."/>
+							</j:beads>
+						</j:DropDownList>
 						<j:Button text="deselect" click="avengersDropDownList_withSelectedItem.selectedIndex = -1"/>
 						<j:Label text="selectedItem: {(avengersDropDownList_withSelectedItem.selectedItem as IconListVO).label}"/>
 					</j:GridCell>