Re: Problems using JSTL with struts

2005-03-27 Thread Rodolfo García Esteban/CYII
That's right. Now it works. Thank you Rodolfo García Esteban Canal Isabel II División de Aplicaciones Técnicas C/ Santa Engracia, 125 Edificio 8 Tel. 91 545 10 00 - Ext. 2128 Fax. 91 545 14 41 ___ Vamsee Kanakala <[EMAIL PROTECTED]> 18/03/2005 11:03

Re: Problems using JSTL with struts

2005-03-27 Thread Rodolfo García Esteban/CYII
It was de web-app descriptor, that you say in your first response thank you Rodolfo García Esteban Canal Isabel II División de Aplicaciones Técnicas C/ Santa Engracia, 125 Edificio 8 Tel. 91 545 10 00 - Ext. 2128 Fax. 91 545 14 41 ___ Tom Ziemer <[E

Re: Source code for Struts 1.1

2005-03-27 Thread Antony Paul
http://archive.apache.org/dist/jakarta/struts/source/ has 1.1 source code On Mon, 28 Mar 2005 01:27:14 -0300, Saulo de Oliveira <[EMAIL PROTECTED]> wrote: > I'm not sure, but i think you can checkout using svn > url: http://svn.apache.org/repos/asf/struts/ > branch's url: > http://svn.apache.org

RE: focussing on image in jsp

2005-03-27 Thread Raghuveer Vellanki
Vilpesh, you mean focusing on anchor tag??? Are you sure does it works.If yes how? -Original Message- From: Vilpesh Mistry [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 7:08 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: focussing on image in jsp hi why not ha

Re: Source code for Struts 1.1

2005-03-27 Thread Saulo de Oliveira
I'm not sure, but i think you can checkout using svn url: http://svn.apache.org/repos/asf/struts/ branch's url: http://svn.apache.org/repos/asf/struts/core/branches/STRUTS_1_1_BRANCH/ regards, Eugênio Saulo On Mon, 28 Mar 2005 12:17:19 +0800, Keng Onn <[EMAIL PROTECTED]> wrote: > Hi, > > Does

RE: user Digest 24 Mar 2005 14:53:20 -0000 Issue 5708

2005-03-27 Thread David G. Friedman
Keng Onn, If you just want the "groupId" and "action" variables, you could always put them in session scope, perform a forward with redirect="true", then read the groupId and action from the session scope in the new action. Just be sure to remove those variables from session scope IF you don't ne

Source code for Struts 1.1

2005-03-27 Thread Keng Onn
Hi, Does anyone know how I can get a copy of the Struts 1.1 source code? It's to help in debugging a web-app I'm working on which is developed using Struts 1.1. I've looked at the Apache website, but all it offers is the Struts 1.2.4 source / binaries / lib :( Regards, Keng Onn. --

Re: user Digest 24 Mar 2005 14:53:20 -0000 Issue 5708

2005-03-27 Thread Keng Onn
Hi David, Thanks for your advice :) - I think I now know what's happening. I understand what you mean by suggesting that I add the request="true" attribute to the forward, but it's actually the intention of the original author to use the "groupId" and "action" variables that are passed to the se

Re: DispatchAction defaults

2005-03-27 Thread Dakota Jack
Not sure what you mean here, but there is an "unspecified" method for methods that are unspecified. Jack On Sun, 27 Mar 2005 08:57:39 -0800, Nic Werner <[EMAIL PROTECTED]> wrote: > That was exactly what I needed, thanks Wendy. > > Wendy Smoak wrote: > > > From: "Nic Werner" <[EMAIL PROTECTED]>

Re: DispatchAction defaults

2005-03-27 Thread Nic Werner
That was exactly what I needed, thanks Wendy. Wendy Smoak wrote: From: "Nic Werner" <[EMAIL PROTECTED]> I call this with: addDevice.do?method=edit and: addDevice.do?method=update The param for the first page seems a bit extraneous, is there a way that DispatchAction can just call a default method

with multiple="true" - creating an appropriate Model

2005-03-27 Thread Simon MARTIN
Hi, I'm using a form which is defined like this: The part with the html:select tag in my JSP looks like this: (the schuelerMatura array is put into the model manually in the Action) Showing the page works pretty fine, put selecting on ore more of the items in the l

RE: DispatchAction defaults

2005-03-27 Thread Ruben Cepeda
Hello Nic, I may be over simplyfing the problem but why not just set the default value of the dispath hidden field [what ever that may be i.e. in your case method] in the form to the default value that you wanted insted of the default null. Anyhow, in case I was over simplifing the problem her