Re: Netscape 4.7 & disable fields

2003-04-03 Thread Gus Delgado
users.. :) Lunedì, 31 mar 2003, alle 18:19 Europe/Rome, James Mitchell ha scritto: On Mon, 2003-03-31 at 11:12, Gus Delgado wrote: Has anyone run with his/her Struts application and Nestcape 4.7. I have a few textfields that once a button is click the text field go from being enable t

Netscape 4.7 & disable fields

2003-03-31 Thread Gus Delgado
Has anyone run with his/her Struts application and Nestcape 4.7. I have a few textfields that once a button is click the text field go from being enable to disable (read-only) it works great on IE 5.5 and Netscape 6.0 but it seems that Netscape 4.7 does not understand the disable=true attribute

[OT] JMS

2003-03-05 Thread Gus Delgado
I apologized for the off-topic question, is there a mailing-list for Java Messaging Service that anyone knows about, I'm trying to find some answers to some question I have about that technology. Your help is much appreciated. Thanks. -Gus -

Re: Cache

2003-02-13 Thread Gus Delgado
a post, so if you go to a different page and hit the back button the page will be there. -Gus Kris Schneider wrote: For 1.0.2, set the servlet init param "nocache" to "true" Gus Delgado wrote: too late in the project to run that risk!! Alvarado, Juan (c) wrote: Oh yeah

Re: Cache

2003-02-13 Thread Gus Delgado
too late in the project to run that risk!! Alvarado, Juan (c) wrote: Oh yeah that would be a problem. Can't you upgrade?? It's suppose to be backwards compatible. -Original Message----- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 12:18 PM To: St

Re: Cache

2003-02-13 Thread Gus Delgado
"> -----Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 10:54 AM To: Struts Users Mailing List Subject: Cache Is there any way to clean the cache from an Action. I have a LogoutAction that gets all of the Attributes in the session by n

Re: Cache

2003-02-13 Thread Gus Delgado
not seem to work on either IE or Mozilla David Graham wrote: You can use various http headers to tell the browser to not cache the pages. There's no guarantee that the browsers will follow your suggestion though. It sounds like you're trying to control the user too much. David From

Cache

2003-02-13 Thread Gus Delgado
Is there any way to clean the cache from an Action. I have a LogoutAction that gets all of the Attributes in the session by name and removes all of them + it invalidates the session, but I also want to clear the cache so that when the user hits the back button nothing will be there. Is there a

Re: Reset button.

2003-02-11 Thread Gus Delgado
mel wrote: if (isReset(httpServletRequest)){ return actionMapping.findForward(Constants.D_RESET); } As you can see, I had a constants class that I refer to. Also, in the struts-config.xml I have mapped this forward back to the original jsp. I put this snippet of code in the beginning o

Re: Reset button.

2003-02-10 Thread Gus Delgado
d with the appropriate names. I think you'll start to see where this is going. It's not hard, and there isn't a need for server side processing, unless there is, well, a need for server side processing. Is there? You haven't mentioned any. -Dave -----Original Message-

Re: Reset button.

2003-02-10 Thread Gus Delgado
nfig.xml I have mapped this forward back to the original jsp. I put this snippet of code in the beginning of each action class I have. Gus Delgado <[EMAIL PROTECTED]> wrote:how do I check for the reset in the Action? Jacky Kimmel wrote: It sounds like your action does not check to see

Re: Reset button.

2003-02-10 Thread Gus Delgado
empty jsp. It sounds like your action mapping may also not be corrected in your config file. Gus Delgado <[EMAIL PROTECTED]> wrote:I have created a JSP with a "Submit" and "Reset" button both using the and tags. When I first render the page the reset works just fine, but

Reset button.

2003-02-10 Thread Gus Delgado
I have created a JSP with a "Submit" and "Reset" button both using the and tags. When I first render the page the reset works just fine, but if I hit the submit button and the page gets render again, I try to hit the reset and the form does not get clear anymore, the reset button does not wor

struts-user@jakarta.apache.org

2003-01-21 Thread Gus Delgado
I notice that in all of the -Gus -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Paging using struts

2003-01-14 Thread Gus Delgado
http://jsptags.com/tags/navigation/pager/pager-demo.jsp Pat Quinn wrote: Does anyone have a good example of Paging using struts?? _ The new MSN 8 is here: Try it free* for 2 months http://join.msn.com/?page=dept/dialup -- To un

Re: Paging using struts

2003-01-14 Thread Gus Delgado
Pat Quinn wrote: Does anyone have a good example of Paging using struts?? _ The new MSN 8 is here: Try it free* for 2 months http://join.msn.com/?page=dept/dialup -- To unsubscribe, e-mail: For addi

Re: JList

2003-01-10 Thread Gus Delgado
will the getItem() in the Form take a Collection as suppose of a String? Eric C. Hein wrote: labelProperty="label"/> - Original Message ----- From: "Gus Delgado" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Se

Re: JList

2003-01-10 Thread Gus Delgado
it works fine Thank you Eric C. Hein wrote: labelProperty="label"/> - Original Message ----- From: "Gus Delgado" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, January 10, 2003 12:31 PM Subject: J

JList

2003-01-10 Thread Gus Delgado
On Struts and jsp tags, what is the alternative to a JList. Where a user can select multiple items from that list? -thanks Gus -- To unsubscribe, e-mail: For additional commands, e-mail:

action from an Interface

2003-01-09 Thread Gus Delgado
mailto:[EMAIL PROTECTED]> For additional commands, e-mail:

Re: Call Struts Action from JS

2003-01-09 Thread Gus Delgado
Script when it doesn't seem like it is dynamic? Even if you submit using the submit() method of Form it will still use the action that is specified for the form tag. Another thing to keep in mind is that calling 'submit()' will not invoke any onsubmit event handlers if you have the

String Array

2003-01-09 Thread Gus Delgado
I'm trying to populate a table with some data from a collection and a column with a text field do enter data in. I'm trying to make the field in that column a String array but it does not seem to be working?

Call Struts Action from JS

2003-01-08 Thread Gus Delgado
when I call an action from JavaScript like this, it works fine under Mozilla (Netscape) but I get a warning under IE, any ideas how to get around that popup. Error: "Object does not support this property of method" on the line that I call the struts action. If I select no on the popup it wil

Re: html:options question

2003-01-06 Thread Gus Delgado
Thanks it work!. -Gus D. Rick Reumann wrote: On Monday, January 6, 2003, 2:14:38 PM, Gus wrote: GD> GD> labelProperty="label"/> GD> GD> Example. the options are "Read-only", "Admin", and "Analyst" that's the GD> order of the collection, when I edit a user that is Admin, I want the

html:options question

2003-01-06 Thread Gus Delgado
I populate an html:option tag with a collection. I use the html:option to create a new user in my system and to edit a user in my system. When doing an edit I want the html:option to be shown with the current accessType of the user I'm editing. Example. the options are "Read-only", "A

Re: Check log-in status

2002-11-21 Thread Gus Delgado
Does anyone know if Jakarta is got a tab lib that performs paging, like the one jsptags.com offers? thanks -gus -- To unsubscribe, e-mail: For additional commands, e-mail:

enter disable

2002-11-15 Thread Gus Delgado
How can I disable the thanks gus -- To unsubscribe, e-mail: For additional commands, e-mail:

two variables in an action

2002-11-13 Thread Gus Delgado
is this the right way to put to variables in the jsp in an action /newBalanceSheetGroup.do?action=pre,?type=TypeA thanks -- To unsubscribe, e-mail: For additional commands, e-mail:

html:select and collections

2002-11-12 Thread Gus Delgado
I declare a tag in my jsp like this and my action for pre population goes something like this Collection productTypes = getProductTypes(results); session.setAttribute("productTypes", productTypes); I'm getting an error saying that the productTypes bean does not exist? any ideas

Re: back button

2002-11-07 Thread Gus Delgado
Can the isTokenValid and saveToken be in the same Action ? Gus Delgado wrote: I'm trying to use the saveToken function but is not working here is what I have: a parameter called "action" if("save".equals(request.getParameter("action"))

Weblogic

2002-11-05 Thread Gus Delgado
I have a weblogic question, How do I set up weblogic so that when my Struts Action throws an exception I'll know which line it is on right now I get "class.method(Unknow Source)", i would like to get "class.method(Class.java:432). thanks you very much -gus -- To unsubscribe, e-mail:

Re: back button

2002-11-04 Thread Gus Delgado
an handle the condition as if it is out of sync. Hope this would help. danny -Original Message- From: Gus Delgado [mailto:gdelgado@;oceanobjects.com] Sent: Wednesday, October 30, 2002 8:49 AM To: Struts Users Mailing List Subject: Re: back button please explain the controller to no-cache

Re: ClassDefNotFound error on Action

2002-11-04 Thread Gus Delgado
I had the same problem with weblogic, it was because I had the Action and ActionForms inside the war file and inside a jar file as well. Maybe you are doing the same thing? The Actions and ActionForms have to be in only one deployable unit (jar, war). -Gus Richard Doust wrote: I'm trying to inc

Re: back button

2002-10-30 Thread Gus Delgado
lt;[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: back button Date: Wed, 30 Oct 2002 19:47:39 +0500 You can disable the back button by using JavaScript history.forward() at the top of your page. But i dont know if that solves your problem.

back button

2002-10-30 Thread Gus Delgado
I have a JSP that has a sequence of actions. First one is "validate" which will validate some IO File and the next one is "load" to load the file. When the user hits "validate" it sends a request to the back-end to do some validation and I get back a response. When I hit Load it sends a requ

scope="session"

2002-10-29 Thread Gus Delgado
I have set an scope="session" for one of my action tags type="com.webcontrol.monthlyprocess.DeliveryAction" name="deliveryForm" scope="session" validate="true" input="/Delivery.jsp"> ...when I click a button and some

Re: Struts in a war inside a ear file in WL6.1

2002-10-29 Thread Gus Delgado
it is WEB-INF, sorry. Wendy Smoak wrote: The struts.jar is inside the WAR file under web-inf/lib/struts.jar any ideas? Try capitalizing WEB-INF? If you're running on Windows it might not matter, but I've never seen it in lower case. -- To unsubscribe, e-mail:

Struts in a war inside a ear file in WL6.1

2002-10-29 Thread Gus Delgado
I'm getting this error in the browser when I try to deploy an ear that has two EJBs and a war with struts in it. When I click on the button that has the action: No action instance for path /amortization could be created action: Error creating ActionForm instance of class ' i.webcontrol.monthly

Struts and Together CC

2002-09-25 Thread Gus Delgado
> > >> Has anyone try to deploy a struts app on Together CC 6.0 with struts >> plugin? > When doing it, my ApplicationResource.properties file does not get place in the WAR file. any ideas? thanks in advanced. -gus >> -- To unsubscribe, e-mail: For additional co

Struts Power Points

2002-08-22 Thread Gus Delgado
Any good power point presentations out there for an intro to Struts? I'm doing a presentation on it soon, I would like to see if there any good one out there already. Thanks. -Gus -- To unsubscribe, e-mail: For additional commands, e-mail:

Validating with JavaScript

2002-08-12 Thread Gus Delgado
Is there a way to have the validation show on a JavaScript popup instead of on the header of the jsp? I ask this a while back but I never got an answer. Thanks -- To unsubscribe, e-mail: For additional commands, e-mail:

Errors on a different frame

2002-07-29 Thread Gus Delgado
Can I display the errors of an input form in a different frame? like a footer frame? Can I display the errors of an input form in a JScript pop up window? and are these two options conflicting with the Struts framework and/or design? Thanks in advanced. Gus -- To unsubscribe, e-mail:

html:multibox

2001-09-14 Thread Gus Delgado
> I have used the html:multibox before to successfully group checkboxes but > now I'm trying to group text fields, I know that, or at least I think I know > that the html:text won't work. Has anyone ran into this problem before and > if so what were the solutions? Thanks in advanced. Gus

RE: ComboBox

2001-08-09 Thread Gus Delgado
create a collection an set it in the session: session.setAttribute("myCollection", myCollection) -Original Message- From: Bernhard J. Hirschmann [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 7:53 AM To: Struts-User Subject: ComboBox My only displays a list of options

RE: Reaching Action class from Href Link

2001-08-03 Thread Gus Delgado
In addition, If you set the variables from your bean into an ActionForm you won't even have to use the neither. -Original Message- From: Fletcher, Ken [mailto:[EMAIL PROTECTED]] Sent: Friday, August 03, 2001 2:32 PM To: '[EMAIL PROTECTED]' Subject: RE: Reaching Action class from Href

RE: How goes the 1.0 release?

2001-06-15 Thread Gus Delgado
is this suppose to be not-beta anymore? -Original Message- From: Moore, Robert [mailto:[EMAIL PROTECTED]] Sent: Friday, June 15, 2001 3:01 PM To: '[EMAIL PROTECTED]' Subject: How goes the 1.0 release? Is it still expected to happen today? Thanks, Rob

No getter method

2001-06-13 Thread Gus Delgado
I'm trying to re-write the example included in the struts package. I made some changes to the code and now when I try to bring the registration.jsp with an action="Edit". I get an error: No getter method for property mypropertyname of bean mybeanname. I change what I think is everything I needed t

database.xml

2001-06-06 Thread Gus Delgado
I'm trying to create my own example of the struts framework, I created a database servlet and I try to get data from the database.xml when I click on a link but when I check my servlet.log I see that the database (hashtable) is empty. SERVLET LOG: 2001-06-06 01:57:25 - path="/struts-floodcert" :j