Re: T4 "cancel" momentarily shows val errrors

2008-03-09 Thread Andreas Andreou
Is it an async form or not? How could i recreate this behavior? browsers? On Mon, Mar 10, 2008 at 5:54 AM, Heath Nielson <[EMAIL PROTECTED]> wrote: > I'm behind in reading my email. I just updated from 4.1.3 to 4.1.5 and ran > into the same problem that you are describing. Are you still having

Re: T4 "cancel" momentarily shows val errrors

2008-03-09 Thread Heath Nielson
I'm behind in reading my email. I just updated from 4.1.3 to 4.1.5 and ran into the same problem that you are describing. Are you still having this problem? Heath On Sat, Feb 23, 2008 at 08:52:03PM +1100, Geoff Callender wrote: > Surely someone else is experiencing this symptom in 4.1.5. No? >

Re: Comma-delimited looper

2008-03-09 Thread Filip S. Adamsen
Well, I learnt that trick from looking at your source code. ;) -Filip Howard Lewis Ship skrev: Clever! On Fri, Mar 7, 2008 at 7:24 AM, Filip S. Adamsen <[EMAIL PROTECTED]> wrote: Hi Bill, Try this: , ${currThing.name} On the first iteration of the loop index will be 0

Re: Comma-delimited looper

2008-03-09 Thread Howard Lewis Ship
Clever! On Fri, Mar 7, 2008 at 7:24 AM, Filip S. Adamsen <[EMAIL PROTECTED]> wrote: > Hi Bill, > > Try this: > > > , > >context="currThing.id">${currThing.name} > > > On the first iteration of the loop index will be 0 which evaluates to > false. Any other iteration will ou

Re: Comma-delimited looper

2008-03-09 Thread Bill Holloway
Right, I can do , bill On Fri, Mar 7, 2008 at 7:38 PM, Filip S. Adamsen <[EMAIL PROTECTED]> wrote: > And? Whatever content you put after the will still be rendered - > and properly comma-delimited. :) > > -Filip > > Bill Holloway skrev: > > > > Well, sometimes this will be page links, s

Re: t5: refreshing page inside a javascript

2008-03-09 Thread Angelo Chen
window.location.reload(true) works, but reloading seems slow, is there any way to simulate a click in the javascript? Refresh then in jQuery, I did: jQuery("#refresh").click(); it does not trigger the actionLink. A.C. bobpuley wrote: > > StreamResponse return type > > M. > > 2008/3/9, Ange

Re: t5: refreshing page inside a javascript

2008-03-09 Thread Angelo Chen
Hi, Thanks for the fast response! in my ajax call I updated some entities, I can't obtain the streamresponse in the javascript, I need just refresh the page. any idea? A.C. bobpuley wrote: > > StreamResponse return type > > M. > > 2008/3/9, Angelo Chen <[EMAIL PROTECTED]>: >> >> >> Hi, >> >

Re: t5: refreshing page inside a javascript

2008-03-09 Thread marco pugliese
StreamResponse return type M. 2008/3/9, Angelo Chen <[EMAIL PROTECTED]>: > > > Hi, > > I use a javascript(jQuery) to do an ajax call to an onActionFromXXX method > in the page class, I'd like to refresh the page after the call, any idea > how > to do that inside a javascript? or just any other wa

t5: refreshing page inside a javascript

2008-03-09 Thread Angelo Chen
Hi, I use a javascript(jQuery) to do an ajax call to an onActionFromXXX method in the page class, I'd like to refresh the page after the call, any idea how to do that inside a javascript? or just any other way to refresh page programmatically? thanks. A.C. -- View this message in context: http

Re: JumpStart 3.3.1 now available - fixes 3.3.0 bugs

2008-03-09 Thread Geoff Callender
Hi Julian, I've just had a look at how quickstart is organized and it seems to me that JumpStart's code organization is very similar. Was there anything in particular that caught your eye, esp. anything that was confusing about it? Cheers, Geoff On 26/02/2008, at 6:19 AM, Julian Wood w

[T5] Refresh Application context / IoC Registry

2008-03-09 Thread Kheldar666
Hello everybody, I am using the tapestry-spring package and I was wondering if there is a way the refresh to WebApplicationContext ? I looked at the sources but it seems that the implementation of WebApplicationContext does not extends AbstractApplicationContext [1]. May be there is a way to res

Re: t5: dispatcher not fired in the start page

2008-03-09 Thread Filip S. Adamsen
Hi Angelo, Well, let's say I have a filter called CookieLoginRequestFilter that implements ComponentEventRequestFilter and PageRenderRequestFilter: public class CookieLoginRequestFilter implements ComponentEventRequestFilter, PageRenderRequestFilter { private final CookieLoginService co