Hi all,
does anyone know a possibility to prevent the rendering of the inner elements of a custom BSP element? I want to do something like this:
<mat:elem hideInner="true">
<htmlb:inputfield ... />
</mat:elem>
I would like to control from the <mat:elem/> whether or not the <htmlb:inputfield/> is rendered....
I know that I could use a simple <% if ... %>, but an element would be nicer 😊
Any help is appreciated,
Matthias
I would look at the BSP Element BSP:findAndReplace. I looks like you could grab the inner content during the DO_AT_END using:
data: content type string. content = m_out->get_content( ).
I haven't tried it, but instead of changing a small part of the content, you could just wipe it out.
Add a comment