Re: How to work with other page's actionlink?

2008-11-27 Thread dhning
yes, both. Thanks, DH > > onActivate(..) triggers on POST and GET, right? > > > > dhning-2 wrote: >> >> Sure you can, use page link. >> >> Like deleting a user: >> or even >> context="user" if you have defined coercier on user object. >> Please remember that record/delete page should impl

Re: How to work with other page's actionlink?

2008-11-27 Thread inrila
onActivate(..) triggers on POST and GET, right? dhning-2 wrote: > > Sure you can, use page link. > > Like deleting a user: > or even > context="user" if you have defined coercier on user object. > Please remember that record/delete page should implmenet onActivate > method. > Delete.java > v

Re: Antwort: [T5] Bug in HibernateModule?

2008-11-27 Thread Kristian Marinkovic
hi, now i know what you mean, because i had the same problem and reported it as https://issues.apache.org/jira/browse/TAP5-230 :) it is fixed in Tapestry 5.0.16 g, kris Imants Firsts <[EMAIL PROTECTED]> 27.11.2008 18:14 Bitte antworten an "Tapestry users" An Tapestry users Kopie Th

Re: actionlink, pagelink -- how to do POST?

2008-11-27 Thread dhning
If in a form, use linksubmit introduced in latest release 5.0.17. If not, you can refer to OnEvent in t5components project http://code.google.com/p/tapestry5-components/. Thanks, DH - Original Message - From: "inrila" <[EMAIL PROTECTED]> To: Sent: Friday, November 28, 2008 2:02 PM S

Re: How to work with other page's actionlink?

2008-11-27 Thread dhning
Sure you can, use page link. Like deleting a user: or even context="user" if you have defined coercier on user object. Please remember that record/delete page should implmenet onActivate method. Delete.java void onActivate(int userid) { // or User user // your deletion logic here. } Thanks, DH

actionlink, pagelink -- how to do POST?

2008-11-27 Thread inrila
Hello again, Both actionlink, pagelink - they do GET which is not very smart for the let's say "delete" or some other state changing actions. Do we have an option how we can do some "postbutton" or "postsomething"? :-) Or do we have to do that manually? Like creating HTML form and then defining s

How to work with other page's actionlink?

2008-11-27 Thread inrila
Question here :-) I have on the "List" page ... So I need to process it in "List" page as onActionFromDelete(...) Is it possible to point it to some other page? Let's say special dedicated page -- i.e. "record/delete", same as I have "record/create" or "record/edit" ? -- View this message in c

Re: How to share "flash" message across pages better?

2008-11-27 Thread dhning
Use flash persistence. A simple sample, user CRUD. EditUser.java public class EditUser { @InjectPage private UserList list; onSuccess() { list.setMessage("Your record was created succesfully!"); } } public class UserList { @Persist("flash") private String message;

How to share "flash" message across pages better?

2008-11-27 Thread inrila
Hi, As I figured out @Persist will basically store the value in the session/flash for _this_ specific page. Let's say I created simple CRUD, where on the "List" page I am showing all records. When adding new record after onSuccess() I want to put some flash message i.e. "Your record was created

@Persist - default to session "by page"?

2008-11-27 Thread Olexiy Prokhorenko
Hi there, I am trying out Tapestry 5, and have some minor (I guess) problem. I have two different pages and each of them has: .. @Persist @Property private String successMessage; .. and each of the pages at some point writes something into it. Let's say page1 writes "Hi page1", and page2 writ

Re: creating components with Tapestry 5

2008-11-27 Thread Howard Lewis Ship
Tapestry couldn't find your component's template and was forced to assume it didn't exist. I'm beginning to wonder if we need an annotation for components that don't have a template, since this can be a bastard for newbies to track down. Component templates are stored on the classpath, with the

Re: [T5] editing a looped list of objects' properties in a form

2008-11-27 Thread Koka Kiknadze
Is the solution (volatile=true) still valid for 5.0.17? Or maybe any new clarifications? Can not make my loop update source :( TYA On Thu, Oct 23, 2008 at 10:15 AM, Andy Pahne <[EMAIL PROTECTED]> wrote: > > I am trying to edit the properties of objects contained in a list by using > a loop in

Re: creating components with Tapestry 5

2008-11-27 Thread Sven Homburg
i think you misunderstood: 2008/11/27 mad <[EMAIL PROTECTED]> > > The Layout component contains the tag: > > > > as shown below. (Maybe my ellipsis was confusing... sorry about that.) > > > > Sven Homburg wrote: > > > > is there no tag in your layout ? > > > > 2008/11/27 mad <[EMAI

Re: invalidate single ASO object within session

2008-11-27 Thread Geoff Callender
Setting it to null will remove it from the session. See onGoHome() in http://localhost:8080/jumpstart/examples/state/sharingacrossmultiplepages1 . On 28/11/2008, at 4:13 AM, wesleywj2 wrote: hi there, i'm currently implementing a project with T5 with spring2. i wonder how do i invalidate

Re: creating components with Tapestry 5

2008-11-27 Thread mad7777
The Layout component contains the tag: as shown below. (Maybe my ellipsis was confusing... sorry about that.) Sven Homburg wrote: > > is there no tag in your layout ? > > 2008/11/27 mad <[EMAIL PROTECTED]> > >> >> Hi again, >> >> I hate to ask the same question twice. I did actuall

Re: creating components with Tapestry 5

2008-11-27 Thread Sven Homburg
is there no tag in your layout ? 2008/11/27 mad <[EMAIL PROTECTED]> > > Hi again, > > I hate to ask the same question twice. I did actually have this working > with a previous version of T5, but in 5.0.15, the tag is failing, > like this: > > Render queue error in Text[ toto ]: This markup

Re: creating components with Tapestry 5

2008-11-27 Thread mad7777
Hi again, I hate to ask the same question twice. I did actually have this working with a previous version of T5, but in 5.0.15, the tag is failing, like this: Render queue error in Text[ toto ]: This markup writer does not have a current element. The current element is established with the fir

Re: Antwort: [T5] Bug in HibernateModule?

2008-11-27 Thread Imants Firsts
Adding ids to my services does not help. The problem occurs when HibernateModule is trying to contribute the default HibernateConfigurer, but is unable to look it up, because it does not specify which one is the default. This is the code from HibernateModule: public static void contributeHiber

invalidate single ASO object within session

2008-11-27 Thread wesleywj2
hi there, i'm currently implementing a project with T5 with spring2. i wonder how do i invalidate a particular ASO object within a session? because in my session i have few ASO on user transaction. until certain time, i want to invalidate some specific ASO, how do i do that? i've tried using apps

Antwort: [T5] Bug in HibernateModule?

2008-11-27 Thread Kristian Marinkovic
not a bug. this is correct behavior! if you declare multiple ioc services with the same interface you have to qualifiy them with an id. otherwise the ioc container wont know which service instance of the HibernateConfigurer interface to inject in your use case you could also contribute the Hiber

[T5] Bug in HibernateModule?

2008-11-27 Thread Imants Firsts
Hi! I am getting the following exception if I have a service in my application that implements HibernateConfigurer and I contribute it to HibernateSessionSource. org.apache.tapestry5.ioc.internal.OperationException Service interface org.apache.tapestry5.hibernate.HibernateConfigurer is matched

Re: [T5] Pick up https/http from request

2008-11-27 Thread Ryan Mitchell
Hi, glad to see the solution, I came up with something almost identical, contributing my own RequestSecurityManager. I posted about this issue a few weeks ago and was surprised no one responded, but I figured I was explaining the problem weirdly, as I'm wont to do. In my case the problem led to s

Re: T5: how to update zone on dom load

2008-11-27 Thread britske
Ok I simplified my use-case and decided to try and call the javascript function from a button instead of on dom-loaded (parhaps something there is messing with it). Moreover I discovered that I mistakinly assumed that I needed to include the t:zone as parameter to the url. Moreover I changed the a

T5: how to update zone on dom load

2008-11-27 Thread britske
Hi, I've created a zone which get's a couple of updates from various external websites. The zone initally (on page load) contains some local info, but needs to be dynamically extends with the sources extracted from these websites. I want to call a server-side method (onActionFromRefreshZone) whi

Re: Tap 5.0.16 : How to pass in a validator to an embedded TextField componet.

2008-11-27 Thread Shing Hing Man
I have found a workaround from the following post in the archive. http://www.nabble.com/How-to-inherit-or-have-a-dynamic-validate-to18127873.html#a18139604 Instead of passing something like required,min=0 as a FieldValidator to my component, I need to pass it as a String and create the corresp

Dojo data grid

2008-11-27 Thread shaowei mao
Anyone uses dojo data grid control with tapestry 4.1.6? If so, can you post sample code? thanks -- View this message in context: http://n2.nabble.com/Dojo-data-grid-tp1584616p1584616.html Sent from the Tapestry Users mailing list archive at Nabble.com.