diff options
author | xue <> | 2006-04-15 14:21:40 +0000 |
---|---|---|
committer | xue <> | 2006-04-15 14:21:40 +0000 |
commit | b07499534b6d0ed57a2b80c4d95354ca3791c236 (patch) | |
tree | 29bfeefb0b543abee915dd4051652dabb413005a /UPGRADE | |
parent | 0f380cd025dd9530b8faee7061d1957c5fd6cd9c (diff) |
Breaking change! Changed context of the expressions in template to the template control. Evaluations of <%= %> are now all in PreRender stage.
Diffstat (limited to 'UPGRADE')
-rw-r--r-- | UPGRADE | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -16,9 +16,13 @@ for both A and B. Upgrading from v3.0.0 RC1
-------------------------
-- !!! The context of template expression/statements/databinding tags
- is changed to the control owning the template. Previously, it was
- the control representing the tag.
+- !!! Expressions appeared in a template are now evaluated in PreRender
+ stage. Previously, for template expressions, they are evaluated during
+ rendering stage, while for property expressions, they are done right
+ after the controls are constructed.
+- !!! The context of the expressions appeared in a template is changed
+ to the template control. Previously, it is the component/control
+ associated with the expression.
- !!! List controls databound with integer-indexed arrays will have
the integers as their list item values. Previously, it used the array
values as the list item values.
|