Re: ComponentParameter value to Persistent ComponentProperty

2006-11-04 Thread Skorpien126
Ok I tried it very often ... and it looked like that page: ... ... myformcomponent.jwc ... ... myformcomponent.html Content...

Re: ComponentParameter value to Persistent ComponentProperty

2006-11-03 Thread Jesse Kuhnert
Sure it can...Just go look at the For component. On 11/3/06, Skorpien126 <[EMAIL PROTECTED]> wrote: Oh yeah... this was my first Idea,too ... after reading tapestry in action. but using parameter is not possible because the parameters ( in my case ) are propertys of an object which itself is

Re: ComponentParameter value to Persistent ComponentProperty

2006-11-03 Thread Skorpien126
Oh yeah... this was my first Idea,too ... after reading tapestry in action. but using parameter is not possible because the parameters ( in my case ) are propertys of an object which itself is put in a persist collection. I guess that tapestry can“t bind objects of an collection ?!?!?!? Je

Re: ComponentParameter value to Persistent ComponentProperty

2006-11-02 Thread Jesse Kuhnert
Generally speaking you really ~don't~ want to store persistent fields in a component if you can help it. Make everything a parameter. On 11/2/06, Skorpien126 <[EMAIL PROTECTED]> wrote: SOLVED: created a bean but not using the property-attribute of the bean tag... instead i make use of ge

Re: ComponentParameter value to Persistent ComponentProperty

2006-11-02 Thread Skorpien126
SOLVED: created a bean but not using the property-attribute of the bean tag... instead i make use of getBeans().getBean("beanname")... SURELY not the most intuitiv way... an lot of casting around but it seems to work!! Skorpien126 wrote: > > I have found several posts here where this pr