org.chenillekit.tapestry.core.components.Remove

removes all its content of compoments body. in memorial to tap3 component $remove$

[JavaDoc]

Examples

This example describe how to use the Remove component.

MyPage.tml

                    
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
    <body>
        <h1>Hello Guys and Dolls</h1>

            <span t:type="ck/Remove">
                Tapestry removes all content inside the remove component.
                This is good for developer comments or other development issues.
            </div>
    </body>
</html>

                

Back to index