Re: URL pattern that causes TapestryException

2009-05-17 Thread Ville Virtanen
Hi, I also have the same problem, the app also breaks if you enter some custom character, like the % sign. java.lang.IllegalArgumentException Input string 'totalsadf%' is not valid; the character '%' at position 10 is not valid. Hide uninteresting stack frames Stack trace * org.apache.

Re: t5: component events?

2009-05-17 Thread Christian Senk
I think the builtin Autocomplete mixin does something like that. ComponentEventCallback callback = new ComponentEventCallback() { public boolean handleResult(Object result) { List matches = coercer.coerce(result, List.class); matchesHolder.put(matc

t5: component events?

2009-05-17 Thread Angelo Chen
Hi, I'm writing a component, the component requires its container to format a string before rendering completely, say, it needs to call a method: String makeLink(Integer pageNo) and makeLink should be defined by the container of the component, I'm thinking of event bubbling can take care of thi