Re: Question about property bindings vs. expansions

2010-04-05 Thread Howard Lewis Ship
The subtle difference is that prop:url is potentially a read/write binding (the component could attempt to change its parameter which would attempt to update the url property, if a settter method exists). Expansions always result in a read-only value. You can also do things like: mailto:${cont

Re: Question about property bindings vs. expansions

2010-04-05 Thread Thiago H. de Paula Figueiredo
On Mon, 05 Apr 2010 18:19:21 -0300, Pierce T. Wetter III wrote: Are these exactly the same or is there a subtle distinction between them?> This is the same as ${prop:url}. The prop binding is the default one for expressions and for the majority of components' parameters.

Question about property bindings vs. expansions

2010-04-05 Thread Pierce T. Wetter III
Are these exactly the same or is there a subtle distinction between them? Pierce