wrap Grid in View so it compiles. Maybe it won't run
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/1268b2cb Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/1268b2cb Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/1268b2cb Branch: refs/heads/develop Commit: 1268b2cb57e597baf0a5c6dfef8b12463b212cb2 Parents: 8bbea9c Author: Alex Harui <[email protected]> Authored: Mon Aug 21 12:33:41 2017 -0700 Committer: Carlos Rovira <[email protected]> Committed: Thu Sep 7 00:24:02 2017 +0200 ---------------------------------------------------------------------- .../RemoteObjectAMFTest/src/main/flex/App.mxml | 25 ++++++++++---------- 1 file changed, 13 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1268b2cb/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml b/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml index eca7f52..4ef6867 100644 --- a/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml +++ b/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml @@ -52,18 +52,19 @@ limitations under the License. </js:beads> <js:initialView> - <mdl:Grid> - - <mdl:TextField id="name_txt"> - <mdl:beads> - <mdl:TextPrompt prompt="Text to be sent via AMF RemoteObject..."/> - <mdl:Tooltip text="This sample requires an AMF Backend"/> - </mdl:beads> - </mdl:TextField> - - <mdl:Button text="Send Name to AMF" raised="true" accent="true" - click="sendName()"/> - </mdl:Grid> + <js:View> + <mdl:Grid> + <mdl:TextField id="name_txt"> + <mdl:beads> + <mdl:TextPrompt prompt="Text to be sent via AMF RemoteObject..."/> + <mdl:Tooltip text="This sample requires an AMF Backend"/> + </mdl:beads> + </mdl:TextField> + + <mdl:Button text="Send Name to AMF" raised="true" accent="true" + click="sendName()"/> + </mdl:Grid> + </js:View> </js:initialView> <js:valuesImpl>
