Using variable of a tag in a scriplet...how to??

2006-08-09 Thread Gaet
If you can help, it would be great! Thank you, at least, to take time to read me Gaet - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Using variable of a tag in a scriplet...how to??

2006-08-09 Thread Gaet
Thanks vishal (or seth ;o) )! That works, but is there no taglib to get a pageContext attribute? Thanks for your help Gaet - Original Message - From: Vishal Seth To: Struts Users Mailing List Sent: Wednesday, August 09, 2006 12:12 PM Subject: RE: Using variable of a tag

How to display Integer vector in html:select

2006-04-03 Thread Gaet
Hello, I have a vector of Integer that I want to display in a select tag. When writting the following code : html:select layout=false property=productionYear name=productionYearsVector styleClass=TEXTE /html:select I got the following error : Error 500: No getter method available

Re: Session Attribute strange behaviour

2006-01-13 Thread Gaet
the appropriate struts action. I would like to know how webmaster usually do this behaviour TIA - Original Message - From: Marcelo Morales To: Struts Users Mailing List Cc: Gaet Sent: Thursday, January 12, 2006 10:32 PM Subject: Re: Session Attribute strange behaviour Hello

Re: Session Attribute strange behaviour

2006-01-12 Thread Gaet
: the refere header will give me back the last visited page i think or I want to retrieve the struts action that redirect to this page... If you can help again...it would be great Thanks, Gaet' - Original Message - From: Michael Jouravlev To: Struts Users Mailing List Sent

Session Attribute strange behaviour

2006-01-11 Thread Gaet
); } % And it always prints backUrl is NOT NULL... Does somebody can explain me? Thanks in advance! Gaet' - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Taglib

2005-12-13 Thread Gaet
Does someone knows a good taglib to display a popup frame, charts and so on...? Thanks for sharing!

Re: Parameter of ActionMessage...

2005-12-01 Thread Gaet
... Thank you very much! - Original Message - From: Laurie Harper To: user@struts.apache.org Sent: Wednesday, November 30, 2005 11:36 PM Subject: Re: Parameter of ActionMessage... Gaet, ActionMessage doesn't support doing that lookup for you automatically, but you can

Parameter of ActionMessage...

2005-11-30 Thread Gaet
Hi the list! Is it possible to give a key of the ressources.properties in parameter of an ActionMessage? Example : -- # In Struts Action file errors.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage(error.field.mandatory,label.name)); # In ressources.properties file

Re: Parameter of ActionMessage...

2005-11-30 Thread Gaet
Nobody knows? Thanks for your time... - Original Message - From: Gaet To: Mailing List Struts Sent: Wednesday, November 30, 2005 12:14 PM Subject: Parameter of ActionMessage... Hi the list! Is it possible to give a key of the ressources.properties in parameter of an ActionMessage

Re: Parameter of ActionMessage...

2005-11-30 Thread Gaet
Users Mailing List Sent: Wednesday, November 30, 2005 4:47 PM Subject: Re: Parameter of ActionMessage... Bonjour gaet- the current implementation supports passing in parameters to the bean:message tag at runtime e.g. bean:message key=label.welcome arg0=Firstname/ which

Re: Why does html:text property=.../ has no value?

2005-11-30 Thread Gaet
Please send your code of tag html:text But if you specify 'sourceDate' in the name that means that you will look in the bean sourceDate and not that you will display its value...don't know if you see the difference...send more lines of code Cordialement, - Original Message -

Re: paging in struts

2005-11-30 Thread Gaet
why don't simply use 'struts-layout' taglib? Gaet' - Original Message - From: Michael Jouravlev To: Struts Users Mailing List Sent: Wednesday, November 30, 2005 12:41 AM Subject: Re: paging in struts On 11/29/05, Adam Hardy [EMAIL PROTECTED] wrote: Michael Jouravlev

Re: Hide/Show panels dynamically???

2005-11-28 Thread Gaet
??? On 11/27/05, Gaet [EMAIL PROTECTED] wrote: Hi the list! I'm looking for a taglib that allow to show and hide panels on a web page dynamically by simply cliking on a link. Do you know a such taglib? Thanks for sharing! Here is my approach: * When link

Hide/Show panels dynamically???

2005-11-27 Thread Gaet
Hi the list! I'm looking for a taglib that allow to show and hide panels on a web page dynamically by simply cliking on a link. Do you know a such taglib? Thanks for sharing!

Re: bean:define and its behaviour....

2005-11-22 Thread Gaet
, 2005 8:07 PM Subject: Re: bean:define and its behaviour Gaet,This is not a Struts thing, this is a JSP thing. read bean:definedocumentation [1] and look at the source code generated by servletcontainer as James suggested. Documentation states clearly in the veryfirst sentence

Re: bean:define and its behaviour....

2005-11-22 Thread Gaet
=idservice value=(String)pageContext.getAttribute(myVar) But I got a nullPointerExceptionwhat is the right code? Or in this case, may it is prefer to use scripting variables? Thanks for help! Gaet' - To unsubscribe, e-mail

bean:define and its behaviour....

2005-11-21 Thread Gaet
Hi, I'm sure this question is easy to answer for much of yours but I cannot figure out the following behaviour : bean:define id=myVar value=/ % myVar = content; % logic:notEmpty name=myVar % System.out.println(myVar is NOT EMPTY); %

Re: bean:define and its behaviour....

2005-11-21 Thread Gaet
Nobody knows the answer to this trivial question? Thanks - Original Message - From: Gaet To: Mailing List Struts Sent: Monday, November 21, 2005 10:08 AM Subject: bean:define and its behaviour Hi, I'm sure this question is easy to answer for much of yours but I

Re: bean:define and its behaviour....

2005-11-21 Thread Gaet
% myVar = "content"; %are different.Michael.On 11/21/05, Gaet [EMAIL PROTECTED] wrote: Nobody knows the answer to this trivial question? Thanks - Original Message - From: Gaet To: Mailing List Struts Sent: Monday, November 21, 2005 10:08 AM Subject: bean:define

Newbie problem with Nested tag library

2005-11-17 Thread Gaet
Hi everybody, I currently want to display a value with struts's tags instead with pure java. Here is the code I want to translate : %= ((Employe)employesVector.elementAt(i)).getEmploiservice().getEmploi().getLib ellelong() % I have tried to translate with nested library as it seems to be the

Re: Newbie problem with Nested tag library

2005-11-17 Thread Gaet
not accurate... :O| --- Gaet [EMAIL PROTECTED] wrote: Hi everybody, I currently want to display a value with struts's tags instead with pure java. Here is the code I want to translate : %= ((Employe)employesVector.elementAt(i)).getEmploiservice().getEmploi().getLib

Re: Newbie problem with Nested tag library

2005-11-17 Thread Gaet
].emploiservice.idemploiservice of bean employesVector why it retrieves null[0]??? TIA - Original Message - From: Gaet To: Struts Users Mailing List Sent: Thursday, November 17, 2005 5:00 PM Subject: Re: Newbie problem with Nested tag library Thanks Alex but i'd like to use

Re: Newbie problem with Nested tag library

2005-11-17 Thread Gaet
HI, I found the solution and it was just missing the nested:root element. Here is the complete stuff : nested:iterate id=employe name=employesVector nested:root name=employe nested:nest property=emploiservice nested:nest property=emploi nested:write

Integrate Hibernate in Struts

2005-11-15 Thread Gaet
to integrate hibernate with struts and on sometimes, I read that I should use HibernateUtil? What's the true? should I use both? I'm on WSAD 5.1.2...does someone can share its experience? TIA! Gaet'

Re: Integrate Hibernate in Struts

2005-11-15 Thread Gaet
in myeclipseide web site. On 11/15/05, Gaet [EMAIL PROTECTED] wrote: HI guys! I'm currently integrating Hibernate in a web application with Struts. For those, who managed this integration, I'd have just simple questions : What's the difference between HibernateUtil

Struts + Spring + Hibernate

2005-11-02 Thread Gaet
Hi everybody, After reading for two days on the web, the association of Struts + Spring + Hibernate seems to be one of the best architecture to address web application. I've also read several samples but all these classes to develop looks like a gazeline :o) and a little bit difficult

Re: Struts + Spring + Hibernate

2005-11-02 Thread Gaet
afraid on the number of classes we have to develop to only retrieve one row in a table! Thanks for help - Original Message - From: Wendy Smoak To: Struts Users Mailing List Sent: Wednesday, November 02, 2005 5:16 PM Subject: Re: Struts + Spring + Hibernate On 11/2/05, Gaet

Struts, Hibernate and composite keys

2005-10-28 Thread Gaet
Hi, For those who are using Hibernate with struts, just a simple question : How do you do to display the value of a composite key when using for instance, the tag bean:write Example : - A table Person has a composite key lastname and firstname. So, with hibernate mapping,

Re: Integrating Hibernate 3.0 in Struts application

2005-10-25 Thread Gaet
. http://www.hibernate.org/hib_doc/v3/reference/en/html/totorial.html#tutorial-firstapp - Original Message - From: Gaet [EMAIL PROTECTED] To: Mailing List Struts user@struts.apache.org Sent: Monday, October 24, 2005 10:12 AM Subject: Integrating Hibernate 3.0 in Struts

Integrating Hibernate 3.0 in Struts application

2005-10-24 Thread Gaet
Hi, Is there anybody that could give me a good URL that show how to integrate Hibernate in Struts. It would be better if it is for Hibernate 3.0... Thanks for help

Re: Integrating Hibernate 3.0 in Struts application

2005-10-24 Thread Gaet
... regards marco -Original Message- From: Gaet [mailto:[EMAIL PROTECTED] Sent: 24 October 2005 15:13 To: Mailing List Struts Subject: Integrating Hibernate 3.0 in Struts application Hi, Is there anybody that could give me a good URL that show how to integrate Hibernate

Free Database Graphical Tool

2005-10-12 Thread Gaet
Hello, i'm sure it's not the right place but maybe some of you can help me... Do you know a Free Database Graphical Tool that allow to insert/update/delete in a graphical manner (like clicking into a cell as with Excel)? If an Eclipse plugin can do that I'm intersted also... Thanks

Directory acces depending on user connected...

2005-10-11 Thread Gaet
Hi, I have an application where I store PDF of each of my client... I would like to know how to restrict the view of PDF to the client that PDF belongs to Actually to view PDF I have a link like this : www.mywebsite.com/mystrutslink.do?pdf=/pdf/clientId/test.pdf As you may notice, the

Re: What do you do with ActionError in Struts 1.2

2005-08-18 Thread Gaet
use saveMessages(request, errors); instead - Original Message - From: Tuan Jean Tee [EMAIL PROTECTED] To: user@struts.apache.org Sent: Thursday, August 18, 2005 6:06 AM Subject: RE: What do you do with ActionError in Struts 1.2 David, Thank you for the good link. Base on it, I

How to hide URL in Adress bar?

2005-07-13 Thread Gaet
Hi evrybody, I would like to hide the struts URL in the Adress bar of the client browser is there a way do always have www.mysite.com in the adress bar instead of www.mysite.com/myStrutsAction.do?param1=param...?? Thanks for your help!

Re: How to hide URL in Adress bar?

2005-07-13 Thread Gaet
! - Original Message - From: Gaet [EMAIL PROTECTED] To: Mailing List Struts user@struts.apache.org Sent: Wednesday, July 13, 2005 2:48 PM Subject: How to hide URL in Adress bar? Hi evrybody, I would like to hide the struts URL in the Adress bar of the client browser is there a way do always have

Exception - General Question

2005-06-30 Thread Gaet
Hi everybody, Up to now, I was handling my exceptions in my Action class as follow : ActionErrors errors = new ActionErrors(); try{ .. .. } catch (Exception e) { //Put

Re: Exception - General Question

2005-06-30 Thread Gaet
and it works the same in the tags. Gaet [EMAIL PROTECTED] Gaet [EMAIL PROTECTED] 06/30/2005 04:54 AM Please respond to Struts Users Mailing List user@struts.apache.org To Mailing List Struts user

Re: File shared among several project...

2005-06-23 Thread Gaet
in my opinion. Cheers, Aleksandar. On 6/21/05, Gaet [EMAIL PROTECTED] wrote: Hello, I guess this is probably not the right place but I know also that there is also a lot of good developers here and I would like to have your advice on a simple problem. In fact, I am developping a web site

File shared among several project...

2005-06-21 Thread Gaet
Hello, I guess this is probably not the right place but I know also that there is also a lot of good developers here and I would like to have your advice on a simple problem. In fact, I am developping a web site with 4 distinct areas (public, member, admin, employee) on Websphere

Struts and XML/XSL

2005-05-18 Thread Gaet
hi, Actually we have a website developped with struts and tiles...but as XML/XSL seems to be more powerful than tiles for presentation (support different browser, easier to change presentation, better performance...) My question is : is it possible to develop an application using struts and

Re: Struts and XML/XSL

2005-05-18 Thread Gaet
if you don't Necessarily need it Other than adding delays, it introduces additional errors If you are not careful in writing your JSP in XHTML ... Regards marco -Original Message- From: Gaet [mailto:[EMAIL PROTECTED] Sent: 18 May 2005 10:57 To: Struts Users Mailing List

Re: Pagination

2005-04-21 Thread Gaet
have a look to struts-layout and its collection tags http://struts.application-servers.com/doc/index.html hope it helps - Original Message - From: Rafael Taboada [EMAIL PROTECTED] To: Struts List user@struts.apache.org Sent: Thursday, April 21, 2005 3:10 PM Subject: Pagination Hi

Re: How to clear ActionForm before callingmapping.forward(...)???

2005-03-24 Thread Gaet
Thanks for all of you that help meand the winner is : Eric (Mon sauveur, merci ;o) Remember : I want only to start a new cycle by recalling the same action but with another data. So I want to clean my form between these two calls. (Frank has explained that quite well) But I don't understand

How to clear ActionForm before calling mapping.forward(...)???

2005-03-21 Thread Gaet
Hello the list! I have an action-mapping with a forward action that recall the same action mapping in order to display other informations. My problem is that my form is submitted and not cleared in my mapping.forward(editNextEmployee)!!! How to clear my form before to call the mapping.forward?

Re: How to clear ActionForm before calling mapping.forward(...)???

2005-03-21 Thread Gaet
parameter. Is it possible you meant to redirect to start a new request cycle? If so, change your forward to: forward name=editNextEmployee path=/employeeDetail.do?reqCode=edit redirect=true/ Hubert On Mon, 21 Mar 2005 17:50:22 +0100, Gaet [EMAIL PROTECTED] wrote: Hello the list

help needed on ActionForm and ActionForward behaviour

2005-03-18 Thread Gaet
Hi, I have a DispatchAction class, that I use to handle the employee information Edit. On my jsp page, I have two button, on to validate the updates and forward back to the employee list = that works great. On the other button, I want to validate the updates and display the next employeeI

Re: help needed on ActionForm and ActionForward behaviour

2005-03-18 Thread Gaet
In other words, I would like to implemnt a button Save and display next employee How to do this? - Original Message - From: Gaet [EMAIL PROTECTED] To: Mailing List Struts user@struts.apache.org Sent: Friday, March 18, 2005 10:06 AM Subject: help needed on ActionForm and ActionForward

Return key pressed and default submit form

2005-03-17 Thread Gaet
Hi, I a have a page with a form and when I click the return button of my keyboard it submits the first button of my form... how to change the default button or disable the return key action? Thanks

Re: Return key pressed and default submit form

2005-03-17 Thread Gaet
Nobody knows about this simple question? TIA - Original Message - From: Gaet [EMAIL PROTECTED] To: Mailing List Struts user@struts.apache.org Sent: Thursday, March 17, 2005 9:03 AM Subject: Return key pressed and default submit form Hi, I a have a page with a form and when I click

Design problem

2005-03-09 Thread Gaet
Hi, I have page with a list of employees. On that list, if you click on an employee name, I want to redirect to an edit page...easy no? but how to define the complete process into struts-config? Below you will find my actual struts-config but here is my problem : I have defined the

Re: Design problem

2005-03-09 Thread Gaet
That's exactly my problem now Rick! I will have a look ! Thanks! - Original Message - From: Rick Reumann [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Wednesday, March 09, 2005 6:01 PM Subject: Re: Design problem Gaet wrote the following on 3/9/2005 11

What Book??

2005-03-07 Thread Gaet
Hello, I'm hesitating between two struts books, does someone can tell me what is the best between : -Struts Cookbook (just released) -Struts Reference TIA

Format a property in a collectionItem

2005-03-01 Thread Gaet
Hello, I would like to format a property of a collectionItem tag by calling a java method I have tried the following code : layout:collection name=myVector id=myRow align=left layout:collectionItem title=libelle.workDuration sortable=true style=text-align: right;

Re: automatic periodic execution of code

2005-02-16 Thread Gaet
Hello, I know it is not the right place but does someone make Quartz works with Websphere??? I'm trying this since two days and I'm unable to make it worksand I haven't find a Quartz mailing list... If somebody has experience and can help me...TIA... Gaet - Original Message - From

Re: [OT] RE: automatic periodic execution of code

2005-02-16 Thread Gaet
it another way (like your plugin suggestion).. Anyone have managed configure Quartz with Websphere? TIA Gaet - Original Message - From: Barnett, Brian W. [EMAIL PROTECTED] To: 'Struts Users Mailing List' user@struts.apache.org Sent: Wednesday, February 16, 2005 5:34 PM Subject: [OT] RE: automatic

Handle images path in one place

2005-02-10 Thread Gaet
this I can move my images from one folder to another, I will have only one file to update Does somebody use something similar? TIA Gaet

Re: Handle images path in one place

2005-02-10 Thread Gaet
Thanks very much for your help Erik. Do I abuse if I ask you your Struts' plugin you are talking about? TIA Gaet - Original Message - From: Erik Weber [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Thursday, February 10, 2005 4:02 PM Subject: Re: Handle

Error 404: FileNotFound : sortError

2005-02-09 Thread Gaet
Hello to all, I use a layout:pager maxPageItems=10 tage around a layout:collection .. tag in my jsp (very simple ;o)). The problem is when I click on a link of the pager to go to the next page and then press the Refresh button of Internet Explorer. If I try to navigate again on my pager links,