Re: JavaScript question?

2005-07-25 Thread Frank W. Zammetti
AIL PROTECTED] Sent: Monday, July 25, 2005 4:10 PM To: Struts Users Mailing List Subject: Re: JavaScript question? Hi Sezhiyan, There isn't any "standard" way of doing this... what's happening is that the request is coming back just like any other would that updates what the user

RE: JavaScript question?

2005-07-25 Thread Balasubramaniam, Sezhiyan
] Sent: Monday, July 25, 2005 4:10 PM To: Struts Users Mailing List Subject: Re: JavaScript question? Hi Sezhiyan, There isn't any "standard" way of doing this... what's happening is that the request is coming back just like any other would that updates what the user sees. As

Re: JavaScript question?

2005-07-25 Thread Frank W. Zammetti
Hi Sezhiyan, There isn't any "standard" way of doing this... what's happening is that the request is coming back just like any other would that updates what the user sees. As you mentioned though, the save as dialog appears instead... there is no event you can hook that will tell you when the

Re: javascript question

2004-11-03 Thread Michael Rush
Excellent. I figured there was something like this. Your solution worked nicely. For any others that may be interested, here's an example of what I used: onclick="this.form['parent.nestedname'][2].checked='true'" Thanks, Michael On Nov 3, 2004, at 10:51 AM, Jason King wrote: document.formnam

Re: javascript question

2004-11-03 Thread Mark Miller
This is where the HTML styleId attribute comes in handy in combination with indexId of the LOGIC Iterator. This sets up unique object identifiers by id and then you can get at them by reference in your javascript: var ns4 = document.layers? true : false; var ie = document.all? true : false;

Re: javascript question

2004-11-03 Thread Jason King
document.formname["parent.nestedname"] will reference an element in the form formname which has a period in it's name. Michael Rush wrote: I've got a form that's using nested forms, with the following type of layout.. [radio] option 1 [text] value 1 [text] value 2 [radio] option 2 [tex

Re: Javascript question re: dynamically generated input type='text' controls

2004-08-13 Thread Christina Siena
Problem solved. It is possible after all to use input control names containing equals or semicolon or any delimiter as follows: document.formname.elements("value(number=1480;countryCode=USA;templateNumber=7;typeCode=STAGE;languageCode=EN;idTypeCode=MODE:)").value = ""; just in case anyone

RE: Javascript question re: dynamically generated input type='text' controls

2004-08-13 Thread Jim Barrows
> -Original Message- > From: Christina Siena [mailto:[EMAIL PROTECTED] > Sent: Friday, August 13, 2004 1:10 PM > To: [EMAIL PROTECTED] > Subject: RE: Javascript question re: dynamically generated input > type='text' controls > > > If I try to use

RE: Javascript question re: dynamically generated input type='text' controls

2004-08-13 Thread Christina Siena
If I try to use hidden fields to associate the valid name with the multiple composite key name, then what is it about hidden fields that I can use? > > >> -Original Message- >> From: Christina Siena [mailto:[EMAIL PROTECTED] >> Sent: Friday, August 13, 2004 11:23 AM >> To: [EMAIL PROTECTED]

RE: Javascript question re: dynamically generated input type='text' controls

2004-08-13 Thread Jim Barrows
> -Original Message- > From: Christina Siena [mailto:[EMAIL PROTECTED] > Sent: Friday, August 13, 2004 11:23 AM > To: [EMAIL PROTECTED] > Subject: Javascript question re: dynamically generated input > type='text' > controls > > > Hi, > > I am developing a page containing dynamically g