Hi

Is it possible to render Block directly into MarkupWriter?

What I want to do?
I'm writing mixin which adds after original component some html tags filled
with body of Block passed by parameter.

Example. I need such a template:
<t:actionLink t:id="myLink" t:mixins="myMixin">My link
   <p:myMixinParameter>
      Body of <b>Block</b>
   </p:myMixinParameter>
</t:actionLink>

to produce such a html:

<a href=".." ...>My link</a>
<div class="complexBox">
       Body of <b>Block</b>
</div>


How should I write afterRender method of my mixin?


Regards
Lukasz

Reply via email to