T5: do $remove$ and $content$ still exist ?

2007-02-02 Thread RonPiterman
Hi - does t:type="$remove$" does what it used to? and $content$ ? Cheers, Ron - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: T5: which way do you prefer?

2007-01-28 Thread RonPiterman
Martin Strand wrote: No, leaving the decision up to the developer is not a solution at all. Tapestry should have one proper way to do things and if someone is not satisfied with it they can use a 3rd party lib that provides the functionality they need. This will also reduce confusion for newcom

Re: Stale link exception

2007-01-27 Thread RonPiterman
n two places I didn't have to. Backing to the normal behavior now I can also provide the component without its own form. Now I have another question: How can I pervent the validation of components outside the grid when I add a row ? kiuma On 1/27/07, RonPiterman <[EMAIL PROTECTED]>

Re: Stale link exception

2007-01-27 Thread RonPiterman
first, I would not in any cas try to write my own form component. So, stale links: In order for tapestry to submit a form, all form components must be rendered on submit on the same order they were rendered for the response which generated the form. to make sure this happens, tapestry record

Re: Difference between @InjectState & @Persist

2007-01-19 Thread RonPiterman
while state objects are shared between all pages / components, persistant properties are only accessed by the page / component which declares them. Cheers, Ron jiju wrote: Hi All, can you explain whats the difference if we are saving a page property as ASO with scope="session" and if we are

Re: T41: Are there any known problems with BASE tag?

2007-01-18 Thread RonPiterman
he shell component. this will render a tag in the header, and will determine a base for relative URLs. I am just wondering why the default is false in T41? Cheers, Ron Anna -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of RonPiterman Sent: Thursday, Janu

T41: Are there any known problems with BASE tag?

2007-01-18 Thread RonPiterman
Hi - I have a problem with nice-urls since the css is inserting images in wrong urls - are there any issues with dojo and the base tag? Cheers, Ron - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

problem with restart service: exception thrown on session.flush()

2007-01-16 Thread RonPiterman
I have on a server log an exception every time the restart service is called - does anyone have a clue how to get rid of that? Cheers, Ron java.lang.IllegalStateException: setAttribute: Session already invalidated org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:12

question about json requests / autocompleter

2007-01-08 Thread RonPiterman
I use an Autocompleter in a page with some tables/charts - all fed from the backend, now we noticed some extra load on the server when using the autocompleter and it seems the other components render as well - is it normall? cann I avoid it in anyway? Cheers, Ron

Re: Recursive component inclusion

2007-01-08 Thread RonPiterman
that each node of the tree of categories could have been a tapestry component which present the children of the current category to the user ... and that leads to recursivity ! -- Stéphane Decleire Cariboo Networks SARL 05 56 57 99 20 / 06 63 78 69 06 www.bebe-nounou.fr RonPiterman a écrit : AFAIK

Re: Recursive component inclusion

2007-01-08 Thread RonPiterman
AFAIK this can not be done directly, but there are solutions for different problems like displaying a tree using recursion on the model level - what exactly are you trying to achieve? Cheers, Ron Stephane Decleire wrote: Hi, I wonder if there is a way for a tapestry component to include its

Re: making links :visited across components

2007-01-05 Thread RonPiterman
same URls... Cheers, Ron Anyway, can you code around this using ExternalLinks ? RonPiterman wrote: I have a nice usability problem with direct links nested inside components: I have a pager component, which takes an in-out "page" parameter. The pager component generates direct l

making links :visited across components

2007-01-04 Thread RonPiterman
I have a nice usability problem with direct links nested inside components: I have a pager component, which takes an in-out "page" parameter. The pager component generates direct links, which invoke a listener in the component with the page number as parameter. The listener calls the set meth

Re: Tap4: Leaving the Page Listener?

2007-01-03 Thread RonPiterman
Thats a very tricky thing - especialy if handled directly by tapestry, since one should not forget that some applications still would like to function correctly with tabbed/2-window browsing. For your problem: you could do the following: use a single state object and let each page initialize i

Re: PropertySelection populated from database

2006-12-30 Thread RonPiterman
yes, this is the case if you use list index as value in your model. This should only be done if you know the list will not change across requests. If it does, use a databse primary key, and reload the entry from the database on the translate method in the model. Cheers and happy new year, Ron

context url prefix with tomcat / jnp

2006-12-29 Thread RonPiterman
Hi all, I am trying to configure apache/jnp/tomcat as the following: we have two contexts: c1 and c2 apache/jnp maps www.c1.com to localhost:8080/c1/ and www.c2.com to localhost:8080/c2/ problem is, tapestry generates links for css and js with /c1/ prefix. Will be most thankfull for any help

Re: hook into T4's page creation process

2006-12-22 Thread RonPiterman
yes, workers are part of 4.0.2 - and the code is very clear, and one can learn alot from it - howard has a *very* nice programming style, so its worth taking a look. I would look at the wiki, but I don't know if there are any tutorials/docu around for this. It is quite advanced staff, but its