Hello all,

I've read through all relevant topics and have yet to come up with why this
might not be working so many thanks in advance if anyone has any notions!

Take a small component class;

@SupportsInformalParameters
class Foo {
  void beginRender(MarkupWriter writer) {
    resources_.renderInformalParameters(writer);  
  }
}

Some component tml:
<div xmlns:t="bar">
  <some></some><more></more><markup></markup>
</div>

And in the container .tml;
<t:foo class="bob" style="border: 1px solid" />

Now I would expect the rendered component to look like:
<div class="bob" style="border: 1px solid">
  <some></some><more></more><markup></markup>
</div>

Piling through the Tapestry source, it doesn't seem that Tapestry's library
of components do anything more than what I am doing here and yet the
informal parameters in Form, Zone, the various fields etc. are being
rendered correctly.

I have also tried to use the RenderInformals mix-in, again to no avail.
Could this be an issue of configuration? Something extraneous or simple?

Thanks again,
Peter



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/RenderInformals-RenderInformalParameters-Ignored-tp5716673.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to