Re: T3: Stop back button

2008-06-01 Thread zack1403
Do you really think this is the right thread for that question? Also, I doubt posting the same question twice will increase your chances of having it answered. In relation to your question, just make sure that the user cant access or makes changes to the survey if it has already been submitted . D

Re: t5-components MultipleSelect use

2008-06-01 Thread zack1403
One last issue if i persist my list thats going into the value attribute it all works fine until i refresh the page once. At which point i get this: object is not an instance of declaring class. Any idea what that might be? Originates at org.apache.tapestry.commons.models.GenericMultipleSel

Re: T5 tapestry-hibernate

2008-06-01 Thread sparqle
I figured it out. I was missing some dependencies. It works now. sparqle wrote: > > I have read all the help documents, but can't figure out how to make > tapestry-hibernate work. I am not using maven. I am using the t5demo war > file from the "Tapestry for Non Believers" article as a starting

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Robert Zeigler
t:container doesn't exclude it's children. Tapestry templates have to be valid xml documents. That means there has to be a single root element. It's often inconvenient to have to have such a single root element in components. Imagine, for example, a component that renders a subset of cell

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Marcus
Hi Andrew, Sorry about $content$, Robert is right about T5 and T3 RenderBody. Marcus

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Andrew Pietsch
Cool, thanks for that. On Sun, Jun 1, 2008 at 7:17 PM, Igor Drobiazko <[EMAIL PROTECTED]> wrote: > > http://87.193.218.134:8080/t5components/t5c-commons/ref/org/apache/tapestry/commons/components/Remove.html > > On Sun, Jun 1, 2008 at 10:17 AM, Jabbar <[EMAIL PROTECTED]> wrote: > > > Hello Andrew

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Andrew Pietsch
Hi Robert, Thanks for that. As I see it seems to be the inverse of what I want. It excludes it's children from the output, whereas $content$ excludes everything but its children from the output. Does anyone know if the equivalent functionality is planned? Cheers Andrew On Mon, Jun 2, 2008 a

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Andrew Pietsch
Howdy, I'm actually trying to instrument pre-exising HTML with tapestry components. As such the common style marking is duplicated in many files and I need to remove it (since my layout component provides it). The best way for me to do that in the past has been to use the $content$ component as

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Robert Zeigler
$content$ is NOT the same as is the equivalent to the T3 "RenderBody" component. The closest thing to $content$ is , but even that isn't quite the same thing as $content$. Robert On Jun 1, 2008, at 6/16:07 PM , Marcus wrote: Hi Andrew, $content$ = ( http://tapestry.formos.com/nightl

T5 tapestry-hibernate

2008-06-01 Thread sparqle
I have read all the help documents, but can't figure out how to make tapestry-hibernate work. I am not using maven. I am using the t5demo war file from the "Tapestry for Non Believers" article as a starting point (and imported it into Eclipse). I removed all the tapestry-5.0.10 jars and put in 5.0

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Marcus
Hi Andrew, $content$ = ( http://tapestry.formos.com/nightly/tapestry5/tapestry-core/guide/templates.html ) for $remove$ you can use t5components/remove or search on list for "public class Remove" Marcus

Re: T3: Stop back button

2008-06-01 Thread James Sherwood
Hello, Our application submits a form then shows the results(like a survey form). Problem is the users can hit the browser's back button and see the form again and we do not want that. Any ideas how to make it show anything but the form? --James - Original Message - From: "Javier

Re: T5 OnActivate

2008-06-01 Thread maxthesecond
Yes there was an image I use the tree component found in http://wiki.apache.org/tapestry/Tapestry5HowToCreateYourOwnComponents In it, there is a javascript in which two icons are used the tipical + and - icons to represent opened and closed folders, those icons are aded on the window.onlo

Re: t5-components MultipleSelect use

2008-06-01 Thread zack1403
That actually did help being able to look through the code (some links are broken from the 87.193.218.134 site). My issue that I was trying hard to just have strings in the list. It looks like a getter is required to pull a value so once i created an object with one attribute (value) i was able

Tap 5.0.12 snapshot: How to access the application wide message catalog in a contribution

2008-06-01 Thread Shing Hing Man
Hi, In a contribution to a StrategyBuilder configuration, I would like to access the application wide messaga catalog. public static IComputeWorker buildComputeWorker( Map configuration, @InjectService("StrategyBuilder")

Re: [T5]How to change the asset url prefix?

2008-06-01 Thread Sven Homburg
i forgotten: the URIAssetAliasManager is only availble in the t5components-SNAPSHOT 2008/6/1 Sven Homburg <[EMAIL PROTECTED]>: > the t5components library contains an URIAssetAliasManager > let you point to asset location via unified resource > identifier

Re: t5-components MultipleSelect use

2008-06-01 Thread Weisu
Hi Zack, please look at the t5component demo site @ http://87.193.218.134:8080/t5c-demo/multipleselectpage, the java source @ http://tapestry5-components.googlecode.com/svn/trunk/demo/src/main/java/org/apache/tapestry/demo/pages/MultipleSelectPage.java, the tml @ http://tapestry5-components.googl

Re: [T5]How to change the asset url prefix?

2008-06-01 Thread Sven Homburg
the t5components library contains an URIAssetAliasManager let you point to asset location via unified resource identifier sample: @Inject @Path("uri:ftp://somehost/mypic.png";) private Asset myRemoteAsset 2008/6/1 Jun Tsai <[EMAIL PROTECTE

T5 OnActivate

2008-06-01 Thread maxthesecond
I have a page with (for the moment) three components a layout, a tree component and a tree navigator.The tree navigator displays the path to your current displayed categories ex categories/cars/pickups, the tree component shows as a list, the elements of the current category ex(nisan,ford,toyota)

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Igor Drobiazko
http://87.193.218.134:8080/t5components/t5c-commons/ref/org/apache/tapestry/commons/components/Remove.html On Sun, Jun 1, 2008 at 10:17 AM, Jabbar <[EMAIL PROTECTED]> wrote: > Hello Andrew, > > I assume you are trying to create a border component with your use of > $content$ and $remove$, in whic

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Jabbar
Hello Andrew, I assume you are trying to create a border component with your use of $content$ and $remove$, in which case you can use the Layout component. However if you are trying to $remove$ a tag from some html returned to you by your designer, sorry cant' help! If you find or if somebody else