You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by an...@apache.org on 2020/04/26 18:02:16 UTC

[royale-docs] branch master updated: Update data-binding.md

This is an automated email from the ASF dual-hosted git repository.

andreww pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 25393de  Update data-binding.md
25393de is described below

commit 25393de99551766e6bc624b2cabf8bb596f35d05
Author: Andrew Wetmore <an...@cottage14.com>
AuthorDate: Sun Apr 26 15:02:08 2020 -0300

    Update data-binding.md
    
    Not complete yet
---
 features/data-binding.md | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/features/data-binding.md b/features/data-binding.md
index 93cc1cb..ef593c2 100644
--- a/features/data-binding.md
+++ b/features/data-binding.md
@@ -32,6 +32,7 @@ There are several ways to deploy data binding:
 * [Using curly braces ({})](features/data-binding.html#curly-braces)
 * [Using data binding in MXML](features/data-binding.html#mxml)
 * [Using data binding in ActionScript](features/data-binding.html#actionscript)
+* [Two-way data binding](features/data-binding.html#twoway)
 
 ## Using curly braces ({}) {#curly-braces}
 
@@ -83,10 +84,17 @@ private function textInputChange(event:Event):void
 
 When the text in the first TextInput component changes, it triggers the event which changes the text in the second component. _That_, in turn, changes the text in the third component.
 
-Here is a [data binding tutorial](https://royale.apache.org/binding-the-text-property-of-a-jewel-textinput-to-update-a-text-label/){target="_blank"} using the Tour de Jewel example.
+Here is a [data binding tutorial](https://royale.apache.org/binding-the-text-property-of-a-jewel-textinput-to-update-a-text-label/){target="_blank"} using Tour de Jewe.
 
 ## Using data binding in MXML {#mxml}
-_Details coming soon_
+
+_Details coming soon._
+ 
+
 
 ## Using data binding in ActionScript {#actionscript}
-_Details coming soon_
+_Details coming soon_.
+
+## Two-way data binding {#twoway}
+
+_Details coming soon._