Re: Component parameter becoming null

2015-10-26 Thread Thiago H de Paula Figueiredo
On Fri, 23 Oct 2015 14:33:32 -0200, Casey Link wrote: Do you mean the "container" variable in the loop? Yes! That might explain it, as every iteration through the loop the value changes. Is there a way to suspend the dual-binding nature, or pass a copy of the value? No. Don't reuse para

Re: Component parameter becoming null

2015-10-23 Thread Casey Link
Do you mean the "container" variable in the loop? That might explain it, as every iteration through the loop the value changes. Is there a way to suspend the dual-binding nature, or pass a copy of the value? Casey On 10/23/2015 03:25 PM, Thiago H de Paula Figueiredo wrote: > On Fri, 23 Oct 2015

Re: Component parameter becoming null

2015-10-23 Thread Thiago H de Paula Figueiredo
On Fri, 23 Oct 2015 07:01:51 -0200, Casey Link wrote: Ah yea, I screwed up the example in my email, but yes, it's declared like so: @Parameter(required = true) List fooList; Mind you it works for the "normal" static cases, and the case where it's passed as a property (#1 and #2), but not in

Re: Component parameter becoming null

2015-10-23 Thread Casey Link
Ah yea, I screwed up the example in my email, but yes, it's declared like so: @Parameter(required = true) List fooList; Mind you it works for the "normal" static cases, and the case where it's passed as a property (#1 and #2), but not inside a . Casey Link Outskirts Labs { https://outskirtslabs

Re: Component parameter becoming null

2015-10-23 Thread Nathan Quirynen
Just checking to be sure, but are you sure you didn't forget the @Parameter on the fooList property in your component? Nathan On 23/10/15 10:14, Casey Link wrote: This is a strange one. I have a Foo component that wraps a progressive display (not sure if that part is relevant). One of the par