RE: test

2001-09-18 Thread Campesato, Oswald
received. -Original Message- From: Mueller, Annette [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 1:28 PM To: '[EMAIL PROTECTED]' Subject: test pls reply with any generic message that you received this message.

specifying multiple=true in html:select

2001-09-10 Thread Campesato, Oswald
Specifying multiple=true in this tag generates multiple="multiple" in the HTML code. Checking my HTML book shows multiple selects in a select box with just the word MULTIPLE. Is this the correct behavior? Cordially, Oswald

RE: Struts 1.0 labelling of checkbox not working

2001-09-10 Thread Campesato, Oswald
in your form bean? As well as a getter/setter for the collection, you will need a getter to retrieve an individual member of the collection - ie a public repositoryConfig getRepositoryConfig(int index) { return (repositoryConfig) repositoryListVector.elementAt(index); }

Struts 1.0 labelling of checkbox not working

2001-09-10 Thread Campesato, Oswald
Folks: AFAIK, I emulated the code correctly from the following archive: http://www.mail-archive.com/struts-user@jakarta.apache.org/msg08160.html I'm struggling with this pesky checkbox problem. Here's the code: xx <%

RE: "indexed" option does not work with html:checkbox

2001-09-07 Thread Campesato, Oswald
sure I follow... If you add indexed="true" to the checkbox tag, it will produce unique indexed names which should set the value in the appropriate deleteCheckbox - you can then check which deleteCheckbox was set. Let me know if this isn't what you want! Cheers, Dave "Campe

struts + pop-up windows

2001-09-06 Thread Campesato, Oswald
Folks: I'd like to use Struts for converting an existing servlet to a JSP page with suitable Struts-based tags. Here's an example of the existing code in an HTML file: xx addDialog = window.open("AddUserDialogForm?CMD=INIT",

RE: "indexed" option does not work with html:checkbox

2001-09-06 Thread Campesato, Oswald
code fragment in many places, so a solution would be really appreciated:) Cordially, Oswald -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 9:02 AM To: [EMAIL PROTECTED] Subject: Re: "indexed" option does not work with

"indexed" option does not work with html:checkbox

2001-09-04 Thread Campesato, Oswald
The following tag: generates the following error message: indexed is not a valid attribute for tag html:checkbox I've also tried "index" instead of "indexed" and "true" instead of "yes". Other options (onchange, onclick, disabled) work correctly with this tag, so why doesn't "indexed" work?