Re: [Trinidad] question about the binding attribute when a parent copmonent is setting rendered to false

2008-07-22 Thread Andrew Robinson
The binding EL is executed during JSP tag execution (or facelets TagHandler apply). At that time the component is created. Specifically what happens: 1) Tag code evaluates binding to see if the component exists (your bean created here and the getter called) 2) If component is null 2a) create the c

[Trinidad] question about the binding attribute when a parent copmonent is setting rendered to false

2008-07-22 Thread Justin mcKay
I have a question about the binding attribute when a parent copmonent is setting rendered to false. Say I have a panelGroupLayout tag that has the rendered attribute set to false. Then a child to that panelGroupLayout is an inputText tag that has the attribute binding set to a backing bean. M