Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Pivot 2.0 adds support for declaratively creating such dynamic binding relationships as well as the ability to define them in code. For example, the following markup creates a binding association between a page variable named "myText" and the "text" property of a Label instance:

Code Block
xml
xml
 
<Label text="${myText}"/>

Any time the value of "myText" changes, the value of the label's "text" property is also updated.

...