problem with ajaxian updateComponents

2007-09-24 Thread lara.jones
Hi everyone, I need some help concerning an ajaxian updateComponents when a component which should be refreshed is an applet. Here is a snippet of my code . . . . . . . . . I found out that when raw="true" I get a warning message - No ajax response elements received. When I chang

Re: Tapestry [Hivemind] and OC4J 10.1.3 another issue.

2007-09-24 Thread Melody
We also meet this problem, but can't resolve it. Could someone help? Vinicius Carvalho wrote: > > Hello there! I was reading the Hivemind list (I have event post there) > and it's a known bug in OC4J 10.1.2 (Issue 166 I believe), that > hivemind needs a hack to work with 10.1.2, but folks said

Dr. Seuss for the day, too far out of date

2007-09-24 Thread Bill Holloway
Will you work with JSP? They mess up my MVC. I will not work with JSP. We'll put them in an IDE. I don't want them in an IDE. They screw up the MVC. I will not work with JSP. We'll put them down inside some struts. You'll never see them, In the guts. You cannot hide them in the guts! They're i

Re: session state vs application state?

2007-09-24 Thread Howard Lewis Ship
You really want your object to be stored in the ServletContext. In Tapestry terms, that would be possible as a new (as in, not yet provided by the framework) ApplicationStatePersistenceStrategy. Feel free to add a JIRA Issue (and a patch!). On 9/24/07, Robert A. Decker <[EMAIL PROTECTED]> wrote

session state vs application state?

2007-09-24 Thread Robert A. Decker
I've read: http://tapestry.apache.org/tapestry5/tapestry-core/guide/appstate.html I understand that when using an ApplicationState it's really more of a Session state (the default way). What if I want to store something that's shared across all sessions as more of what I would think of as a

Re: Checking for a logged in user globally

2007-09-24 Thread Ben Tomasini
Excellent. Is there a JIRA tracking issue for this? I would be happy to create one if not. On 9/24/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > I'm looking to add a chain-of-command around handling of render and action > requests; you'll be able to plug in there. > > On 9/24/07, Ben Toma

Re: Checking for a logged in user globally

2007-09-24 Thread Howard Lewis Ship
I'm looking to add a chain-of-command around handling of render and action requests; you'll be able to plug in there. On 9/24/07, Ben Tomasini <[EMAIL PROTECTED]> wrote: > > Hi, > > I am working on an application that requires a logged in user for access > to > any of the pages. My plan is to cre

Re: Using PageTester with tapestry-spring

2007-09-24 Thread Doublel
I run into the same problem I use http://wiki.apache.org/tapestry/Tapestry5SpringIntegrationAlternative2 Can you explain more detail?? 2007/9/24, Joel Wiegman <[EMAIL PROTECTED]>: > > Ivan, > > I'm using PageTester with Spring integration, but you'll have to jump > through a few small hoops to ac

Re: T5: using DOJO?

2007-09-24 Thread Martin Reurings
Is it likely that Tapestry 5 will move towards such a solution? Could it even be suggested that one should be able to disable all default Tapestry JS-code? And even more out on a limb, would it be possible to put Ajax/dhtml-support in a seperate module so as not to polute the codebase with it?

RE: How to render template inside a component

2007-09-24 Thread Ken nashua
Another issue is I am extending from public abstract class Gallery extends AbstractFormWidget So I can leverage JSON and Script... like AutoComplete widget This guy is not a BaseComponent... and will not leverage the template. Am I locked out from operating a template now? Jesse, can you

Re: [OT?] OGNL source code and license

2007-09-24 Thread Martino Piccinato
tnx. The fact is that ognl.org site don't mention new versions at all and opensymphny site reference a completely different source repository. Let's say that OGNL is a Catch The Source If You Can project ;-) - To unsubscribe, e-ma

Re: Thread continuation after client disconnection

2007-09-24 Thread Josh Canfield
The only way that the server would know that the client's connection had been disconnected is when it tried to read or write from that connection. Until the server tries to read or write something back to the browser your thread will continue happily chugging along. Generally no writing happens unt

T5: Override validation

2007-09-24 Thread Robin Helgelin
Hi, I'm trying to abstract my beans to make things easier. What I'm trying to do is to define a default validation on the abstract bean, and in same cases I want to override that as for example when a user is edited via admin, the username isn't required, which it is from the public part of the si

[T5] Client-side persistence

2007-09-24 Thread Borut Bolčina
The doc ( http://tapestry.apache.org/tapestry5/tapestry-core/guide/pagenav.html) says: "At some point, persistent values make more sense. In the near future, there will be a client-side persistence strategy that will encode persistent data, such as the product id field, into query parameters (and

Re: T5: Initial value for a field (persisted, parameter or just a plain field)

2007-09-24 Thread Josh Canfield
It's working as specified. Tapestry automatically resets the value of your page attribute to what it was when the page object was first created. In this case, the value is whatever your method returned. It's not going to call your initialization method again. If you want your attribute to be diff

RE: How to render template inside a component

2007-09-24 Thread Ken nashua
Here is my Home.html My Gallery.JAVA gets called... But my Gallery.html gets ignored. How can I get this thing to render my Gallery.html I'd like to tell Gallery.JAVA to grab Gallery.html and render it while it maintains all of it's own metrics calculations.Best rega

RE: How to render template inside a component

2007-09-24 Thread Ken nashua
Tried this in my Home.html... Tag on line 10 is a dynamic component, and may not appear inside an ignored block. org.apache.tapestry.parse.TemplateParseException Tag on line 10 is a dynamic component, and may not appear inside an ignored block. location: context:/WEB-INF/Home.html, l

Re: [OT?] OGNL source code and license

2007-09-24 Thread Alejandro Scandroli
Here is the svn repo: http://svn.opensymphony.com/svn/ognl/trunk/ Alejandro. On 9/24/07, Ben Acker <[EMAIL PROTECTED]> wrote: > OGNL is indeed open source. You can check out the source under the Downloads > section from here http://www.ognl.org/ - I didn't see any links to the > repository though

How to render template inside a component

2007-09-24 Thread Ken nashua
Folks, I have a template in html that is a makeup of tapestry and html markup... Markup is below... I want to render it inside my component as the body. Does tap-4.1.2 support this? I'd hate to have to convert it all to JAVA. Inside my protected void renderComponent(IMarkupWriter writer

Re: [OT?] OGNL source code and license

2007-09-24 Thread Ben Acker
OGNL is indeed open source. You can check out the source under the Downloads section from here http://www.ognl.org/ - I didn't see any links to the repository though. On 9/24/07, Martino Piccinato <[EMAIL PROTECTED]> wrote: > > Hi, > > is OGNL open source? If it is where can I access source code?

Re: Tapestry 4.1.2 JS problems?

2007-09-24 Thread andyhot
Norman Franke wrote: Ah, thanks! I wasn't aware of that. I may see if I can get it working using jscalendar, then. Thanks! My other regret was due to the "preventBackButtonFix" business. Leaving it off cause all sorts of problems for my clients (pages not displaying or displaying wrong.) I ha

Re: Tapestry 4.1.2 JS problems?

2007-09-24 Thread Norman Franke
Ah, thanks! I wasn't aware of that. I may see if I can get it working using jscalendar, then. Thanks! My other regret was due to the "preventBackButtonFix" business. Leaving it off cause all sorts of problems for my clients (pages not displaying or displaying wrong.) I had to disable it (

[OT?] OGNL source code and license

2007-09-24 Thread Martino Piccinato
Hi, is OGNL open source? If it is where can I access source code? ognl.org website mention 2.6.9 as latest release, and I can't find no link to any source repository. I've also discovered there's a page on opensymphony website about ognl that point to the jira issue tracker managed by Jesse and

T5: Initial value for a field (persisted, parameter or just a plain field)

2007-09-24 Thread Ted Steen
Hi all, I define a field like this private MyObject myObject = getDefaultMyObject(); Now, the default value is not set in the end of the request as documented. If I put myObject in a form and alter fields within it, the values will pop up in subsequent requests even from different clients(!). This

Re: Tapestry 4.1.2 JS problems?

2007-09-24 Thread andyhot
Tapestry 4.0.2 and tacos never had a DatePicker based on Dojo As seen on http://opencomponentry.com:8080/tacos/forms/FormEffectsExample.html that datepicker is from http://sourceforge.net/projects/jscalendar Perhaps this can be re-included in tacos 4.1 - esp. if someone is willing to work / c

Re: Tapestry 4.1.2 JS problems?

2007-09-24 Thread Norman Franke
I haven't heard anything on this one. I'm now downgrading DropdownDatePicker to plain old DatePicker since DropdownDatePicker just doesn't work on many web browsers. We've been getting a string of complaints, including crashed firewalls and other stuff. Too bad since DropdownDatePicker look

unsubscribe

2007-09-24 Thread ASTI Araza, Ariel D.
-Original Message- From: Ben Tomasini [mailto:[EMAIL PROTECTED] Sent: Monday, September 24, 2007 11:08 PM To: Tapestry users Subject: Checking for a logged in user globally Hi, I am working on an application that requires a logged in user for access to any of the pages. My plan is to

Checking for a logged in user globally

2007-09-24 Thread Ben Tomasini
Hi, I am working on an application that requires a logged in user for access to any of the pages. My plan is to create a login form and store the logged in user in an ASO. I understand that I can implement an onActivate() on each of my pages, check to see if the user exists in the ASO, and if no

Re: Thread continuation after client disconnection

2007-09-24 Thread #Cyrille37#
#Cyrille37# a écrit : Hello, I would like to know if there is a option, in the ServletServer or in Tapestry for managing client disconnection. I call "client disconnection" when the client press stop or back or ... while the page is loading. If there is no option, how should we handle the ca

Re: T5: using DOJO?

2007-09-24 Thread Kristian Marinkovic
hi borut, have you read the comments on https://issues.apache.org/jira/browse/TAPESTRY-1650 g, kris "Borut Bolčina" <[EMAIL PROTECTED]> 24.09.2007 14:34 Bitte antworten an "Tapestry users" An "Tapestry users" Kopie Thema Re: T5: using DOJO? 2007/9/4, [EMAIL PROTECTED] <[EMAIL PRO

RE: Using PageTester with tapestry-spring

2007-09-24 Thread Joel Wiegman
Ivan, I'm using PageTester with Spring integration, but you'll have to jump through a few small hoops to accomplish this. I've written a "TestHarnessModule" in my .services directory. This module contributes the Spring services manually. My code looks very similar to what's found here: http://w

[T4.1.3] Rounded corners service and side shadows

2007-09-24 Thread Christian Dutaret
Hi all, I just tried using the rounded corners service. I'm have trouble with side shadows generation: 1) Side shadows are always generated as PNG images. This shouldn't be too much of a problem since it doesn't seem to be using any transparent background, and I don't need to support very old ver

Re: T5: using DOJO?

2007-09-24 Thread Borut Bolčina
2007/9/4, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > 在 Mon, 03 Sep 2007 16:08:34 +0800,Angelo Chen > <[EMAIL PROTECTED]> 写道: > > > > > Hi Erik, > > > > That's good news, I read somewhere that It might be Proptotype not Dojo. > > jQuery will be great, IMO. > > +1 for jQuery and http://interface.eyec

Re: Page Layout Error

2007-09-24 Thread Mohammad Shamsi
Hi all, finally it works. sorry for bothering you. and thanks all for your kindly helps. my mistake is here : my component HTML template was in WEB-INF direcotry. :( sorry again, thanks again. On 9/24/07, Angelo Chen <[EMAIL PROTECTED]> wrote: > > > Hi Dalahoo, > > I use the Intellij too,

Using PageTester with tapestry-spring

2007-09-24 Thread Ivan Dubrov
Hi, How can I use the PageTester with the Spring integration? The problem is that when PageTester creates the registry it does not adds SpringModuleDef to the list of modules and all my Spring services are unavailable because of this. Extending the PageTester is not possible as well, so I cannot e

Component Parameter value Problem

2007-09-24 Thread zaxeer
Hi, Every One I am facing a problem relted to component parameter values. I have a page which will contain components , these compnents will be desided by a List of String from the page: If i give a code it will be like this: :

Thread continuation after client disconnection

2007-09-24 Thread #Cyrille37#
Hello, I would like to know if there is a option, in the ServletServer or in Tapestry for managing client disconnection. I call "client disconnection" when the client press stop or back or ... while the page is loading. If there is no option, how should we handle the cas ? Thanks a lot Cyril

Re: T5: Persisting per page AND depending on page state.

2007-09-24 Thread Ted Steen
hah, and now, after further investigation I see that all this is unnecessary... I get a new session automatically for each new host i try to access my page from. I just assumed that the same session would be used. anyway, it was interesting to see how a persistance stategy was contributed. 2007/9/

Re: T5: Persisting per page AND depending on page state.

2007-09-24 Thread Ted Steen
the contribution should be to the PersistentFieldManager of course 2007/9/24, Ted Steen <[EMAIL PROTECTED]>: > Ok! > After digging a little deeper I now see that extending the > AbstractSessionPersistentFieldStrategy and letting the prefix contain > the host name should be a solution! > I then con

Re: T5: Persisting per page AND depending on page state.

2007-09-24 Thread Ted Steen
Ok! After digging a little deeper I now see that extending the AbstractSessionPersistentFieldStrategy and letting the prefix contain the host name should be a solution! I then contribute this to the ApplicationStatePersistenceStrategySource. Any objections? :) 2007/9/24, Ted Steen <[EMAIL PROTECTE

T5: Persisting per page AND depending on page state.

2007-09-24 Thread Ted Steen
A page in our application can be in different states (depending on the sub domain). When a field is persisted, the state of the page should be taken in to account. For example if the page is accessed via the host name a.my-host.com the page should have its fields persisted for the context A and if

RE: T5: onchange event from a select

2007-09-24 Thread Leon Derks
I want to be able to update a second select, based on the value in the first select box. So I want to process it on the server-side, or with AJAX. Is there a way to catch the onchange event in my java page? JP > Date: Sun, 23 Sep 2007 23:37:52 -0700 > From: [EMAIL PROTECTED] > To: users@tapes