Untetermined count of form elements

2007-02-28 Thread Dennis Kempin
Hello, i am trying to process an dynamic amount of options, which are fetched from an list, just like this: Well every textfield needs a value to write the result, but when i have an undetermined amount of textfields, i cannot hardcode the value component pro

Re: T5: Howto add additional packages with components

2007-02-23 Thread Dennis Kempin
> > You can define a new virtual folder this way, or extend an existing one. > > Why can't the components be in the standard location? > > > On 2/22/07, Dennis Kempin <[EMAIL PROTECTED]> wrote: >> Hello, >> >> I want to make a bunch of components ava

T5: Howto add additional packages with components

2007-02-22 Thread Dennis Kempin
Hello, I want to make a bunch of components available to my application, but these are not inside the [root].components package. How can i add additonal packages to the search path for components? thanks, Dennis - To unsubscri

Re: Bug using multiple "parent" components

2007-02-22 Thread Dennis Kempin
I made some more debugging.. The element is added to the end of the template instead, using addToBody: Dennis Kempin wrote: > Hi, > > I want to create a component that wraps all page common html layout into > one template. Just like this: >

Bug using multiple "parent" components

2007-02-22 Thread Dennis Kempin
debugging and saw that the page content rendercommand is pushed to the very end of the queue, when all all sourrounding tags already have been closed, not at the place of where it should be rendered. Any ideas what the problem may be? reagards Dennis Kempin

Re: Tapestry5: Passing parameters to pages

2007-02-16 Thread Dennis Kempin
Sorry, i hit the wrong button, please ignore my previous mail. Well I finally got it working, making some smaller changes to the LinkFactory(Impl), ComponentResource and PageLink of course. PageLink now takes a context parameter just like actionLink does and passes it to the LinkFactory

Re: Tapestry5: Passing parameters to pages

2007-02-16 Thread Dennis Kempin
Well I finally got it working, making some smaller changes to the LinkFactory(Impl) and ComponentResource. I added a method "Link createPageLink(Page page, Object... overrideContext)" and markes the "Link createPageLink(Page page)" one as deprecated (java should accept calls to createPageLink(page

Re: Tapestry5: Passing parameters to pages

2007-02-16 Thread Dennis Kempin
Well that would be a nice solution I think. Well I dont see any other way to make a simple content list / display application. The onActivate Event seems to be really useful, entering the URL manually works great, but i dont know any solution to link to such a page. I tried the following hack: $

Tapestry5: Passing parameters to pages

2007-02-15 Thread Dennis Kempin
Hi, I am experimenting with the tapestry snapshot version and want to write a little page class that takes an integer parameter to specify an content id to show. Just like passing a context with an Action link, but just without the HTTP redirect back to the Page URL. I could make use of a persiste