Re: Clear text while using File Upload in Struts2

2009-12-28 Thread Saeed Iqbal
The major thing you would want is to have the selected file uploaded to the server first before clear. Think in that direction, maybe. On Mon, Dec 28, 2009 at 9:14 PM, Rafael Taboada wrote: > u can change the event to onchange for example... code shows onclick > because > I have another button a

Re: focusElement in s:form

2009-12-28 Thread Dale Newfield
CRANFORD, CHRIS wrote: I don't see any Javascript code in the Source file in the browser at all. That's what is not making any sense to me for the form tag. It is as if the focusElement doesn't cause the tag to do anything at all. I would expect to see some stuff in the source file tha

RE: focusElement in s:form

2009-12-28 Thread CRANFORD, CHRIS
I don't see any Javascript code in the Source file in the browser at all. That's what is not making any sense to me for the form tag. It is as if the focusElement doesn't cause the tag to do anything at all. I would expect to see some stuff in the source file that is rendered, correct?

Re: focusElement in s:form

2009-12-28 Thread Dale Newfield
CRANFORD, CHRIS wrote: I have removed all javascript from the JSP page and installed Firebug. No errors show up and Javascript is enabled. I get the same result in IE as well where my form isn't focusing on my userName field. So put a breakpoint on the javascript line that is making the focus(

RE: focusElement in s:form

2009-12-28 Thread CRANFORD, CHRIS
I have removed all javascript from the JSP page and installed Firebug. No errors show up and Javascript is enabled. I get the same result in IE as well where my form isn't focusing on my userName field. Wonder what else it could be. -Original Message- From: Dale Newfield [mailto:d...@ne

Re: focusElement in s:form

2009-12-28 Thread Dale Newfield
CRANFORD, CHRIS wrote: Is there anything special I could be missing here to get FF to focus on the field when the page is rendered? There's no magic. The only way for this to happen is by executing a snippet of javascript in the browser. Therefore this will not work in a browser that has ja

focusElement in s:form

2009-12-28 Thread CRANFORD, CHRIS
I have tried all combinations of values in the focusElement tag for s:form yet I cannot get the textfield called username to be focused when the JSP is rendered with my login web page. I have tried it both with just the name of the textfield (userName) along with using the ID of the element (logi

[Struts 2.1.8] Dependency injection and Struts actions

2009-12-28 Thread Celinio Fernandes
Hi, I have a question about dependency injection in Struts 2 actions. Dependency injection (JSR 330) is integrated in Java EE 6 which has become final a couple of weeks ago. Struts actions are not managed objects but is there a way with some available dependency injection implementation to injec

Re: Example of dumping the valuestack?

2009-12-28 Thread Musachy Barroso
if you add a debug=browse param and have the dojo plugin in the app, you can browse the stack content. On Mon, Dec 28, 2009 at 9:55 AM, Stephen Turner wrote: > > On Mon, 28 Dec 2009 07:38:38 -0500, Jim Collings > wrote: > >> I'm having some trouble finding things due to some arcane code.  Was >>

Re: Example of dumping the valuestack?

2009-12-28 Thread Stephen Turner
On Mon, 28 Dec 2009 07:38:38 -0500, Jim Collings wrote: I'm having some trouble finding things due to some arcane code. Was wondering if anyone could provide me with an example of dumping the valuestack to the jsp so that I can take a look? Jim C. P.S. I've probably asked this before bu

Re: Clear text while using File Upload in Struts2

2009-12-28 Thread Rafael Taboada
u can change the event to onchange for example... code shows onclick because I have another button above the file upload to change its style. but the main idea is to clear the value like javascript function shows On Mon, Dec 28, 2009 at 11:11 AM, vineith kaul wrote: > If I understand your questi

Re: Clear text while using File Upload in Struts2

2009-12-28 Thread vineith kaul
If I understand your question right, I think a reset button should do the job right ? something like this: Vineith On Mon, Dec 28, 2009 at 6:16 AM, Rafael Taboada wrote: > Puedes usar javascript: > > function limpiarText(){ > var idUpload=document.getElementById("idUpload"); > var frm=doc

Re: Example of dumping the valuestack?

2009-12-28 Thread Greg Lindholm
You can include the tag on your jsp page. On Mon, Dec 28, 2009 at 7:38 AM, Jim Collings wrote: > I'm having some trouble finding things due to some arcane code.  Was > wondering if anyone could provide me with an example of dumping the > valuestack to the jsp so that I can take a look? > > > Jim

Example of dumping the valuestack?

2009-12-28 Thread Jim Collings
I'm having some trouble finding things due to some arcane code. Was wondering if anyone could provide me with an example of dumping the valuestack to the jsp so that I can take a look? Jim C. P.S. I've probably asked this before but I can't seem to find it via searching. Reminder anyone? -

Re: Clear text while using File Upload in Struts2

2009-12-28 Thread Rafael Taboada
Puedes usar javascript: function limpiarText(){ var idUpload=document.getElementById("idUpload"); var frm=document.getElementById("frm"); idUpload.setAttribute("value",""); frm.reset(); } On Mon, Dec 28, 2009 at 2:12 AM, Saeed Iqbal wrote: > If you have not submitted t