Introducing js:Form
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/389f55da Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/389f55da Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/389f55da Branch: refs/heads/feature/mdl Commit: 389f55da86602c9e3d70c1a2b6f234f8b3107b20 Parents: 068c497 Author: Carlos Rovira <carlosrov...@apache.org> Authored: Mon Oct 17 11:54:29 2016 +0200 Committer: Carlos Rovira <carlosrov...@apache.org> Committed: Thu Oct 20 17:46:39 2016 +0200 ---------------------------------------------------------------------- examples/flexjs/MDLExample/src/main/flex/App.mxml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/389f55da/examples/flexjs/MDLExample/src/main/flex/App.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/MDLExample/src/main/flex/App.mxml b/examples/flexjs/MDLExample/src/main/flex/App.mxml index 37e9e6a..b94a0d7 100644 --- a/examples/flexjs/MDLExample/src/main/flex/App.mxml +++ b/examples/flexjs/MDLExample/src/main/flex/App.mxml @@ -56,11 +56,12 @@ limitations under the License. </js:Container> <!-- Text Fields :: https://getmdl.io/components/index.html#textfields-section --> - <js:Container className="mdl-textfield mdl-js-textfield"> - <js:TextInput className="mdl-textfield__input" id="sample1"/> - <js:Label className="mdl-textfield__label" text="Text..."/> - </js:Container> - + <js:Form action="http://www.google.com"> + <js:Container className="mdl-textfield mdl-js-textfield"> + <js:TextInput className="mdl-textfield__input" id="sample1"/> + <js:Label className="mdl-textfield__label" text="Text..."/> + </js:Container> + </js:Form> </js:View> </js:initialView>