CheckBox and RadioButton examples
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/951ec5af Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/951ec5af Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/951ec5af Branch: refs/heads/feature/mdl Commit: 951ec5af5ef0b8f79d0c183186130c4c2d05ecd9 Parents: 2eb44f2 Author: Carlos Rovira <[email protected]> Authored: Mon Oct 17 17:59:17 2016 +0200 Committer: Carlos Rovira <[email protected]> Committed: Fri Oct 21 17:35:17 2016 +0200 ---------------------------------------------------------------------- examples/flexjs/MDLExample/src/main/flex/App.mxml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/951ec5af/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 242df22..209efae 100644 --- a/examples/flexjs/MDLExample/src/main/flex/App.mxml +++ b/examples/flexjs/MDLExample/src/main/flex/App.mxml @@ -63,9 +63,11 @@ limitations under the License. <!-- Text Fields :: https://getmdl.io/components/index.html#textfields-section --> <mdl:TextInput id="mdlti" text="Something..." change="mdlchk.text = mdlti.text"/> - <!-- Text Fields :: https://getmdl.io/components/index.html#textfields-section --> + <!-- Toggles :: https://getmdl.io/components/index.html#toggles-section --> <mdl:CheckBox id="mdlchk" text="Hello" selected="true"/> + <mdl:RadioButton groupName="g1" text="Black"/> + <mdl:RadioButton groupName="g1" text="White"/> </js:Form> </js:View>
