In addition, the property "name" is already used by Tapestry (each page has a fixed name, the name you give it in the application specification).
----- Original Message ----- From: "Richard Lewis-Shell" <[EMAIL PROTECTED]> To: "Aejaz Muslim" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, May 05, 2002 3:59 PM Subject: Re: [Tapestry-developer] Newbie question : Property not found Exception Hi, Your inputName component in Home.jwc should use the property-path "name", not "Name". ie. it should be like this: <component id="inputName" type="TextField"> <binding name="value" property-path="name"/> </component> In general, a get/set method combo like getAbcDef/setAbcDef results in a property name of "abcDef". But to get this all to work you will also have to pass the 'name' from the Home page to the Values page. There are a number of ways to do this - see this list's archives for more info (in particular, look for "FAQ"). Your bindings used by your insertName component on the Values page will need to be changed accordingly... Richard _______________________________________________________________ Have big pipes? SourceForge.net is looking for download mirrors. We supply the hardware. You get the recognition. Email Us: [EMAIL PROTECTED] _______________________________________________ Tapestry-developer mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/tapestry-developer
