Wrapping Tapestry Components

The preferred way to extend and/or override a Tapestry component's functionality is to "wrap" it. For an example, see the GridWithContext component in the AJAX Components CRUD example.

Home


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- We need a doctype to allow us to use special characters like &nbsp; 
     We use a "strict" DTD to make IE follow the alignment rules. -->
     
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_4.xsd">
<body class="container">
    <h3>Wrapping Tapestry Components</h3>

    The preferred way to extend and/or override a Tapestry component's functionality is to "wrap" it. 
    For an example, see the <em>GridWithContext</em> component in the <em>AJAX Components CRUD</em> example.<br/><br/>

    <t:pagelink page="Index">Home</t:pagelink><br/><br/>
    
    <t:tabgroup>
        <t:sourcecodetab src="/web/src/main/java/jumpstart/web/pages/examples/component/WrappingTapestryComponents.tml"/>
        <t:sourcecodetab src="/web/src/main/java/jumpstart/web/pages/examples/component/WrappingTapestryComponents.java"/>
    </t:tabgroup>
</body>
</html>


package jumpstart.web.pages.examples.component;

public class WrappingTapestryComponents {
}