I have made a simple component that is essentially an Insert with a body. If 
value isn't specified the body is rendered. Apart from this change to render 
the components are the same.

-------
<p jwcid="@InsertDescription" value="message:meta-description" tag="p">Bling 
On has the best bling for your phone.</p>
-------
<component-specification class="tapestry.InsertDescription">



<parameter name="value">



</parameter>


<parameter name="tag"/>


</component-specification>

-------
   String tag = getTag();
   if (tag != null) {
    writer.begin(tag);
       renderInformalParameters(writer, cycle);
   }
         if (value != null)
          writer.print(value.toString());
         else
     renderBody(writer,cycle);

         if (tag!=null)
           writer.end();

-------
Regardless of what I call the parameters they remain null in the 
renderComponent method.

Really odd !?!?

Henrik 




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to