Apache
  Home arrow Apache arrow Page 4 - Apache Tapestry: ASO and More Componen...
Dev Shed Forums 
Administration  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Download TestComplete 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
APACHE

Apache Tapestry: ASO and More Components
By: Alexander Kolesnikov
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 12
    2007-05-21

    Table of Contents:
  • Apache Tapestry: ASO and More Components
  • Creating hivemodule.xml
  • AddCelebrity page
  • Creating the template with new components
  • Continuing to configure the application

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
     
    ADVERTISEMENT

    Dell PowerEdge Servers

    Apache Tapestry: ASO and More Components - Creating the template with new components
    (Page 4 of 5 )

    Now let's convert this mock up into a Tapestry template. Along with the already mentioned RadioGroup and PropertySelection, we are going to use yet another new component, DatePicker. These components are somewhat more complicated than those that you've used before, so I am going to introduce and configure them one by one. The RadioGroup is the simplest of the three, so let's begin from it.

    Here is the piece of markup we are going to deal with:

    <input type="radio" name="gender" value="M"/> Male &nbsp;&nbsp;

    <input type="radio" name="gender" value="F"/> Female

    The RadioGroup itself serves as a container for a number of Radio components, so the first task is to convert the existing <input type="radio"> elements into Radio components. This is very easy to do, and in many cases these components will be defined implicitly:

    <input type="radio" name="gender" value="M"

                                   jwcid="@Radio"/> Male &nbsp;&nbsp;

    <input type="radio" name="gender" value="F" jwcid="@Radio"/> Female

    The next step is to surround these two with a Tapestry component and then define that component as a RadioGroup. Here is the addition to the template:

    <div jwcid="gender">

      <input type="radio" name="gender" value="M"

                     jwcid="@Radio"/> Male &nbsp;&nbsp;

      <input type="radio" name="gender" value="F" jwcid="@Radio"/> Female

    </div>

    And here is the addition to the page specification:

    <component id="gender" type="RadioGroup">

        <binding name="selected" value="gender"/>

    </component>

    Here we have ensured that when the form is submitted, the value of the selected Radio component is passed to the page class. Finally, declare that you need a property named 'gender' in the page class:

    @InitialValue("literal:F")

    public abstract String getGender();

    We've provided an initial value so that Tapestry knew which of the radio buttons should be selected by default.

    And of course, the form surrounding the components should be declared as a Tapestry Form component:

    <form jwcid="@Form">

    At this point, we might want to test whether the page runs properly, but we need some link to access it. It will be probably most natural to place such a link at the CelebritiesList page, straight under the table:

    <p><a href="" jwcid="@PageLink" page="AddCelebrity">

       Add another celebrity

    </a></p>

    Run the application, click on the new link, and you should see the AddCelebrity page. Try to change the value for gender and press the Submit button. Nothing exciting happens so far, but the fact that everything works smoothly confirms that all components were configured properly - otherwise Tapestry would complain.

    More Apache Articles
    More By Alexander Kolesnikov


       · i have not so much experience with tapestry but i love it more than anything else. ...
       · Application State Objects are very useful in any Tapestry application. This issue...
       · Thank you very much! I am writing an issue on AJAX components by the way, and I am...
       · I have completed all this series of Tapestry tutorial in just two days and now I...
       · Thats great, but the tutorial is very far from completion :)The most interesting...
       · you mean issue 14 is online??? it is super! wow!!! but i didn found it:)I'm fan...
       · No, this means I have submitted it to the publisher :)It takes some time to edit...
       · :( I'm risking to ask you about new components. May I?Is it possible in an...
       · I am not sure what you want to achieve, but one solution would be to have a method...
       · Sorry, but DevShed delays the publication of the four issues I have already...
       · OK, so i have another error and i just can not figure it out. it says:"Unable to...
       · OK, I figured it out. The source read .Home instead of .AddCelebrity. Sometimes,...
       · Hi! Is there an alternative to using @InjectState? just like instead of @InjectPage,...
     

       

    APACHE ARTICLES

    - Putting Apache in Jail
    - Containing Intrusions in Apache
    - Server Limits for Apache Security
    - Setting Permissions in Apache
    - Installing Apache
    - Apache Installation and Configuration
    - Apache Tapestry and Custom Components: DateI...
    - Tapestry and AJAX: Autocompleter and InlineE...
    - PropertySelection and IPropertySelectionMode...
    - The DatePicker and Shell Components of Apach...
    - Apache Tapestry: ASO and More Components
    - Apache Tapestry and DirectLink, IoC and DI
    - Making a CelebrityCollector with Apache Tape...
    - Apache Tapestry and Listener Methods, Condit...
    - The Properties of Tapestry Pages




    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway