You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Jin Lee <ji...@gmail.com> on 2005/01/17 21:35:44 UTC

newbie question: textarea + spindle

Hi all,

Using spindle, I have the following in my .page file:

    <component id="history" type="TextArea">
        <binding name="value=" expression="BServiceRequest.History"/>
    </component>

spindle says this is wrong:

required parameter [value] of component TextArea.jwc is not bound

Am I doing something wrong? sorry for the newbie question.

Jin

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org


Re: How to disable cache in Tapestry in Tomcat?

Posted by Deili Tandaju <de...@yahoo.com>.
Thank you Johan! I have tried and it works :)
Thanks Richard for the very useful information. I am a newbie in Tapestry 
and Tomcat,
and right now is trying the best combination of development environment 
that I can use.

Best Regards,
Deili.

At 03:10 20/01/2005, you wrote:
>>I know that I can use the command-line :
>>         java -Dorg.apache.tapestry.disable-caching=true
>>But where exactly in the c:\Tomcat\bin\startup.bat should I put the command?
>
>For example, modify startup.bat like so:
>----
>:doneSetArgs
>
>set JAVA_OPTS=%JAVA_OPTS% -Dorg.apache.tapestry.disable-caching=true
>
>call "%EXECUTABLE%" start %CMD_LINE_ARGS%
>----
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
>For additional commands, e-mail: tapestry-user-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org


Re: Trees Documentation ?

Posted by ls...@iinet.net.au.
Thanks, but thats just a link to John Reynolds examples that I mentioned I had 
already seen. 

Quoting Javier Sanchez <ja...@gmail.com>:

> Look at https://tapestrywebcomponentexamples.dev.java.net/
> 
> JAVIER SANCHEZ
> 
> 
> On Thu, 20 Jan 2005 07:34:05 +1100, Lindsay Steele <ls...@iinet.net.au>
> wrote:
> > Hi,
> >    Is there any documentation for the tree component ? Or any planned ?
> > 
> >   What I want to do is to display text in the tree list and have objects
> > attached to the tree nodes - so that when I click on the tree nodes I
> > can retrieve an object in code.  Displaying the text is not a problem
> > but getting objects attached is.
> > 
> >  At the moment I have followed John Reynolds excellent examples, browsed
> > the slightly confusing workbench example, looked for info in the API's
> > and searched the archives but I can't seem to find examples on what I
> > want to do.
> > 
> >   Is what I want to do possible - or any other ideas ??
> > 
> >    Lindsay
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: tapestry-user-help@jakarta.apache.org
> > 
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tapestry-user-help@jakarta.apache.org
> 




---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org


Re: Trees Documentation ?

Posted by Javier Sanchez <ja...@gmail.com>.
Look at https://tapestrywebcomponentexamples.dev.java.net/

JAVIER SANCHEZ


On Thu, 20 Jan 2005 07:34:05 +1100, Lindsay Steele <ls...@iinet.net.au> wrote:
> Hi,
>    Is there any documentation for the tree component ? Or any planned ?
> 
>   What I want to do is to display text in the tree list and have objects
> attached to the tree nodes - so that when I click on the tree nodes I
> can retrieve an object in code.  Displaying the text is not a problem
> but getting objects attached is.
> 
>  At the moment I have followed John Reynolds excellent examples, browsed
> the slightly confusing workbench example, looked for info in the API's
> and searched the archives but I can't seem to find examples on what I
> want to do.
> 
>   Is what I want to do possible - or any other ideas ??
> 
>    Lindsay
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tapestry-user-help@jakarta.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org


Trees Documentation ?

Posted by Lindsay Steele <ls...@iinet.net.au>.
Hi,
   Is there any documentation for the tree component ? Or any planned ?

  What I want to do is to display text in the tree list and have objects
attached to the tree nodes - so that when I click on the tree nodes I
can retrieve an object in code.  Displaying the text is not a problem
but getting objects attached is.

 At the moment I have followed John Reynolds excellent examples, browsed
the slightly confusing workbench example, looked for info in the API's
and searched the archives but I can't seem to find examples on what I
want to do.

  Is what I want to do possible - or any other ideas ??

   Lindsay


---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org


Re: How to disable cache in Tapestry in Tomcat?

Posted by Johan Maasing <jo...@zoom.nu>.
> I know that I can use the command-line :
>         java -Dorg.apache.tapestry.disable-caching=true
> 
> But where exactly in the c:\Tomcat\bin\startup.bat should I put the 
> command?

For example, modify startup.bat like so:
----
:doneSetArgs

set JAVA_OPTS=%JAVA_OPTS% -Dorg.apache.tapestry.disable-caching=true

call "%EXECUTABLE%" start %CMD_LINE_ARGS%
----

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org


How to disable cache in Tapestry in Tomcat?

Posted by Deili Tandaju <de...@yahoo.com>.
Hi All,
I am a newbie in Tapestry and Tomcat, and still in the process of learning 
Tapestry.
How do I disable cache in Tapestry (using Tomcat 5.0.28) so that the HTML 
file that I edited and saved will be reflected
automatically when I refresh the page in the internet browser?

I know that I can use the command-line :
         java -Dorg.apache.tapestry.disable-caching=true

But where exactly in the c:\Tomcat\bin\startup.bat should I put the command?
And what is the syntax of the command that should I type in startup.bat?
Or are there any easier/preferable way to do this?

Thank you in advance,
Deili.



---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org


Re: newbie question: textarea + spindle

Posted by Jin Lee <ji...@gmail.com>.
oops =)

thank you. *lowers head in shame*

On Mon, 17 Jan 2005 21:46:55 +0100, Johan Maasing <jo...@zoom.nu> wrote:
> Jin Lee wrote:
> > Hi all,
> >
> > Using spindle, I have the following in my .page file:
> >
> >     <component id="history" type="TextArea">
> >         <binding name="value=" expression="BServiceRequest.History"/>
> 
> Shouldn't that be name="value", that is, you have a '=' to much?
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tapestry-user-help@jakarta.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org


Re: newbie question: textarea + spindle

Posted by Johan Maasing <jo...@zoom.nu>.
Jin Lee wrote:
> Hi all,
> 
> Using spindle, I have the following in my .page file:
> 
>     <component id="history" type="TextArea">
>         <binding name="value=" expression="BServiceRequest.History"/>

Shouldn't that be name="value", that is, you have a '=' to much?

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org