Hey Ken. Your question was poorly formatted. You didn't include the code that was failing except the snippet that was reported in the exception. Extracting that code is extra work that I have to do to figure out what you're doing wrong.
If you aren't going to take the time to format good questions then why would someone take the time to write a good answer? For free? Here is your code. 20 <div class="t-beaneditor"> *21 <t:beaneditor object="mb:bean" t:mixins="tynamo/ BeanModelAdvisor"/>* 22 <br/> 23 <div class="t-beaneditor-row"> 24<p:password> 25 <t:label for="password" /> 26 <t:passwordfield t:id="password" value="loginCredentials.password"/> 27</p:password> Emmanuel said "you have to put the parameter block inside the beaneditor component." On line 21 you are *closing* the beaneditor and not including the parameter block in it. Here is what it looks like to "put the parameter block inside the beaneditor component" <t:beaneditor object="mb:bean" t:mixins="tynamo/BeanModelAdvisor"> <p:password> <t:label for="password" /> <t:passwordfield t:id="password" value="loginCredentials.password"/> </p:password> </t:beaneditor> Good luck! Josh On Fri, Dec 7, 2012 at 2:05 PM, Ken in Nashua <kcola...@live.com> wrote: > > The problem I have with these replies... > > Is no body wants to demonstrate with syntax using code > > Its guesswork > > sure I have used block component before but semantically how ? > > I wish things could be more generous. >