Hi,
    I am new to Tapestry. I have made two or more demo application for
tapestry5. in Tomcat5.5 and eclipse plugin splindle and the greatest help of
the ScreenCast of Howard
(http://tapestry.apache.org/tapestry5/screencast.html)...

    But in the 4th screencast for  the beaneditForm it will not display any
thing on the page..
    i.e. there is no component display on the form page...  as i have
written 
   " <form t:type="beaneditform" Object="registration" />" in Home.html.... 
    actually i cant found, what is missing ?
    
    CODE: Home.html
   <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";
xmlns:p="tapestry:parameter">
   <head>
    </head>
    <body>
     <form t:type="beaneditform" Object="registration" />
    </body>
   </html>


      CODE:Home.java
      package com.hemen.page;

import org.apache.tapestry.html.BasePage;
import org.apache.tapestry5.annotations.ApplicationState;

import com.semaphore.data.Registration;

public abstract class Home extends BasePage {
        @ApplicationState
        private Registration registration;
        
        public Registration getRegistration(){
                return registration;
        }

        public void setRegistration(Registration registration) {
                this.registration = registration;
        }

}

CODE Home.page
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE page-specification PUBLIC
  "-//Apache Software Foundation//Tapestry Specification 3.0//EN"
  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd";>
<!-- generated by Spindle, http://spindle.sourceforge.net -->

<page-specification class="com.hemen.page.Home">
</page-specification>


So suggest me...
And also suggest about some useful tutorial with example....
As all the books are paid (No Free ebooks are available for tapestry though
its opensource)....
-- 
View this message in context: 
http://www.nabble.com/BeanEditForm-Screencast-tp21156843p21156843.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to