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 34017a4  Update data-binding.md
34017a4 is described below

commit 34017a45d55be897282e2314f6dd31c2eae727bd
Author: Andrew Wetmore <[email protected]>
AuthorDate: Thu May 28 07:27:18 2020 -0300

    Update data-binding.md
    
    Added a note about data binding
---
 features/data-binding.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/data-binding.md b/features/data-binding.md
index 71910e0..88468ab 100644
--- a/features/data-binding.md
+++ b/features/data-binding.md
@@ -26,7 +26,7 @@ Update the UI in real time as data changes
 Royale, like Flex before it, makes it easy to pass data around your 
application. A change to data can automatically update the display of that data 
in the user interface, and potentially in calculations or other functions that 
use that data. The feature that makes this possible without having to write 
lots of code is *data binding*.
 
 Data binding requires
- - a **data binding bead** that adds this functionality to the whole 
application, or to the container in which the data binding happens.
+ - a **data binding bead** that adds this functionality to the whole 
application, or to the container in which the data binding happens. If you 
enable data binding for a container, it only applies to the componenents within 
that container; if you enable it at the application level, all application 
components inherit the ability to use data binding.
  - a **source property**
  - a **destination property**
  - a **triggering event** that indicates when to copy the data from the source 
to the destination

Reply via email to