Repository: flex-asjs Updated Branches: refs/heads/develop 0d8833ad2 -> b02069b1e
Switching to VerticalLayout and HorizontalLayout (from Flex layouts) for compatibility with IE9. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/b02069b1 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b02069b1 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b02069b1 Branch: refs/heads/develop Commit: b02069b1e79c83090ad8c23b171972a9292adb03 Parents: 0d8833a Author: Peter Ent <[email protected]> Authored: Tue May 9 13:30:16 2017 -0400 Committer: Peter Ent <[email protected]> Committed: Tue May 9 13:30:16 2017 -0400 ---------------------------------------------------------------------- .../src/main/flex/MyInitialView.mxml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b02069b1/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml b/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml index 84f6f26..4824c88 100644 --- a/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml +++ b/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml @@ -108,19 +108,19 @@ limitations under the License. <js:beads> <js:ViewDataBinding /> - <js:VerticalFlexLayout /> + <js:VerticalLayout /> </js:beads> <js:Label text="Enter Stock Symbol or choose from list:" /> - <js:Group className="inner"> + <js:Group className="inner" width="400"> <js:beads> - <js:HorizontalFlexLayout /> + <js:HorizontalLayout /> </js:beads> - <js:Group className="leftSide"> + <js:Group className="leftSide" width="50%"> <js:beads> - <js:VerticalFlexLayout /> + <js:VerticalLayout /> </js:beads> <js:TextInput id="symbolTI" text="{MyModel(applicationModel).stockSymbol}" className="symbolInput" width="50%" /> <js:TextButton text="Get Quote" className="quoteButton" width="50%" @@ -129,9 +129,9 @@ limitations under the License. <js:Label className="output" height="24" text="{MyModel(applicationModel).responseText}" /> </js:Group> - <js:Group className="rightSide"> + <js:Group className="rightSide" width="50%"> <js:beads> - <js:VerticalFlexLayout /> + <js:VerticalLayout /> </js:beads> <js:DropDownList id="list" width="50%" change="_symbol = list.selectedItem as String; dispatchEvent(new CustomEvent('listChanged'))"
