blob: a84a357c9006f314465bfd8e468d376be135721e [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<s:Module
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx">
<s:Panel width="100%" height="100%"
title="Bidirectional Binding 1"
horizontalCenter="0"
>
<s:Label top="10" left="15" verticalAlign="justify" width="200"
text="Flex 4 interprets the @ binding syntax differently than Flex 3 in
that it will now represent a two-way binding. In this example, the text2 TextInput is bound to text1 bidirectionally,
so any change to the text2 value will also update the text1 value. "/>
<s:VGroup horizontalCenter="15" top="40">
<s:Label text="Enter Text:"/>
<s:TextInput id="text1" widthInChars="20" />
<s:TextInput id="text2" color="0xFF3366" widthInChars="20" text="@{text1.text}"/>
</s:VGroup>
</s:Panel>
</s:Module>