Iterate a character array

2005-03-21 Thread Victor Grazi
s really not the way I wanted to go, because it's too much load to transform a char string to a list of Strings, and then accepting a list of strings back and converting them back to characters, for each access, not to mention creating and GC'ing all of those extra objects. Do

RE: Rewrite with Struts?

2005-03-21 Thread Victor Grazi
eally not the way I wanted to go, because it's too much load to transform a char string to a list of Strings, and then accepting a list of strings back and converting them back to characters, for each access, not to mention creating and GC'ing all of those extra objects. Do

Re: Struts 1.1 iterate woes

2004-10-04 Thread Victor Grazi
>If you want to stick to the html tags, take a look at the example in >http://wiki.apache.org/struts/StrutsCatalogLazyList > >hth, >Hubert > >On Sun, 3 Oct 2004 14:16:19 -0400, Victor Grazi <[EMAIL PROTECTED]> wrote: >> We are trying to use in a JSP to access ite

Re: Struts 1.1 iterate woes

2004-10-03 Thread Victor Grazi
have used the following syntax and it works. > > > "/> >"/> >"/> > > > >On Sun, 3 Oct 2004 14:16:19 -0400, Victor Grazi <[EMAIL PROTECTED]> wrote: >> We are trying to use in

Struts 1.1 iterate woes

2004-10-03 Thread Victor Grazi
We are trying to use in a JSP to access items in a list stored in the Form Bean by the Action class but we can't seem to get the syntax right. I am getting an error meessage from PropertyUtils that displays the index as '${index}', which indicates that that struts el expression is not resolving

RE: Struts development methodology

2004-09-21 Thread Victor Grazi
I've already had to take steps to change banks because they only supported proprietry browsers rather than suport the standards. We should not be allowing these things to slip through IMHO. Brett Connor Victor Grazi wrote: >Not sure I understand. >What's a CVS? Are u referring to

Re: Struts development methodology

2004-09-14 Thread Victor Grazi
tags or what ever, and DW has plugins for JSP tag libs, any >and all. >The java People can write formbeans that map to the html forms and unit >test CRUD. >The layered development, done all the time just like that. >.V > >Victor Grazi wrote: >> We are developing an important s

Struts development methodology

2004-09-14 Thread Victor Grazi
We are developing an important struts application for a major bank, and we need some advice on methodology... Our graphic designers are developing the UI in HTML using Dreamweaver and Notepad. (They are gifted artists, but they don't much know about Struts or JSTL). We also have Java developers

Seeking master detail hello world

2004-09-12 Thread Victor Grazi
Can you point me to a small but complete master detail struts program? I am having trouble understanding how to set this up, especially with buttons on each row. For example if the page is displaying a collection of beans as an html table, and there is an update and delete button on each row, h

RE: Generating struts tags from a Java Bean

2004-08-18 Thread Victor Grazi
Not exactly; can you elaborate the step "Model Use of logic to generate " -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 11:15 AM To: Struts Users Mailing List Subject: Re: Generating struts tags from a Java Bean The JSP page is r

RE: Generating struts tags from a Java Bean

2004-08-18 Thread Victor Grazi
. I understand how to create taglibs in general, I am asking whether there is such specific documentation for Struts. Much thanks/Victor Grazi -Original Message- From: Craig McClanahan [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 17, 2004 4:42 PM To: Struts Users Mailing List; [EMAIL

RE: Generating struts tags from a Java Bean

2004-08-17 Thread Victor Grazi
ECTED]> wrote: > > >> -Original Message- >> From: Victor Grazi [mailto:[EMAIL PROTECTED] >> Sent: Tuesday, August 17, 2004 10:35 AM >> To: Struts Users Mailing List >> Subject: RE: Generating struts tags from a Java Bean >> >> >> the problem we

RE: Generating struts tags from a Java Bean

2004-08-17 Thread Victor Grazi
the problem we are trying to solve is that depending on user entitlements and application state, some fields need to either be a drop down or just text. ___ Sent with SnapperMail www.snappermail.com .. Original Message ... On Tue, 17 Aug 2004 09:46:49 -0700 "Jim Barrows" <[EMAIL PROTEC

varying form element types using struts

2004-08-08 Thread Victor Grazi
I am creating a Struts form with some dynamically populated drop down lists. There is a general requirement that any drop down that contains just a single element should display as free html text instead of as a drop down. Is there any way to specify this type of variation using struts? Regar