JavaScript / struts submit problems

2003-01-28 Thread tbachta
Hello All, I am having a little problem that hopefully someone can help me with. I have a form that has a hidden field in it, I am not populating this hidden field on the page load but rather I am populating the value in a JavaScript function and then using the form.submit() in JavaScript to

RE: JavaScript / struts submit problems

2003-01-28 Thread Mei Zhu
] Subject: JavaScript / struts submit problems Hello All, I am having a little problem that hopefully someone can help me with. I have a form that has a hidden field in it, I am not populating this hidden field on the page load but rather I am populating the value in a JavaScript function

RE: JavaScript / struts submit problems

2003-01-28 Thread Mei Zhu
To: Struts Users Mailing List Subject: RE: JavaScript / struts submit problems In your jsp page, the hidden field should be: html:hidden property=xMLQueryString/ The first character of the property name should be lower case. Mei -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: JavaScript / struts submit problems

2003-01-28 Thread Nelson, Laird
-Original Message- From: Mei Zhu [mailto:[EMAIL PROTECTED]] In your jsp page, the hidden field should be: html:hidden property=xMLQueryString/ The first character of the property name should be lower case. No; see

RE: JavaScript / struts submit problems

2003-01-28 Thread tbachta
: Subject: RE: JavaScript / struts submit problems 01/28/2003 11:36

RE: JavaScript / struts submit problems

2003-01-28 Thread tbachta
: JavaScript / struts submit problems 01/28/2003 11:36 AM

RE: JavaScript / struts submit problems

2003-01-28 Thread Mei Zhu
Users Mailing List Subject: RE: JavaScript / struts submit problems Sorry forgot to add this code to the fray, here is the ActionForm class where I have the get and set methods private void setXMLQueryString(String sXML) { this.XMLQueryString = sXML; } public String

RE: JavaScript / struts submit problems

2003-01-28 Thread tbachta
To: Struts Users Mailing List [EMAIL PROTECTED] .comcc: Subject: RE: JavaScript / struts submit problems

RE: JavaScript / struts submit problems

2003-01-28 Thread Mei Zhu
Subject: RE: JavaScript / struts submit problems I dont think that the capitalization is the problem, I have tried to do it with the get and sets like XmlQueryString() and the property =xmlQueryString, and I still get a zero length string when I try to getXmlQueryString() in my action class. Tim