ActionError() placeholders: a new suggestion?

2002-04-18 Thread Elijah Jacobs
Hi All, Please tell me if this has already been suggested. Why not have a new contructor for ActionError such ActionError(java.lang.String key, java.util.Map) ? The key value pair for the Map can be placeholder/value. ie. In the ApplicationResources.properties file : instead of :You have w

dynamic form using nested:file?

2002-04-14 Thread Elijah Jacobs
hi all, (forgive me if this is a duplicate... server problems) I have a form that can have N number of images. So in essence it's like the Monkey struts example by Arron Bates except where he has bananas, i have images. The problems is that I have to associate a FormFile for each image, since e

dynamic form using nested:file?

2002-04-14 Thread Elijah Jacobs
hi all, I have a form that can have N number of images. So in essence it's like the Monkey struts example by Arron Bates except where he has bananas, i have images. The problems is that I have to associate a FormFile for each image, since each image can be updated (hence an image upload is need

Re: dynamic form using nested:file?

2002-04-12 Thread Elijah Jacobs
12, 2002 4:14 AM Subject: Re: dynamic form using nested:file? > Elijah, > > Sorry about the lack of the tag. It's on its way. > Pick it up in the next nightly build. > > Arron. > > > Elijah Jacobs wrote: > > >hi all, > > > >I have a form that c

dynamic form using nested:file?

2002-04-11 Thread Elijah Jacobs
hi all, I have a form that can have N number of images. So in essence it's like the Monkey struts example by Arron Bates except where he has bananas, i have images. The problems is that I have to associate a FormFile for each image, since each image can be updated (hence an image upload is need

nested:options not retrieving values

2002-03-20 Thread Elijah Jacobs
Hi all, some code would help: As you can see I have a form that has a reference to an ArrayList "itemList" and each item on this list has an ArrayList "userList" that holds idValue and displayValue attributes. Currently I am gett

Re: nested:iterate - set method not called

2002-03-17 Thread Elijah Jacobs
deleted as it's been > called. The reference to the parent bean is there so it can call the > parent bean and tell it that it wants to be deleted. > > If you don't need this more advanced bean driven functionality, then you > really should avoid it. > > Arron. > &g

Re: nested:iterate - set method not called

2002-03-15 Thread Elijah Jacobs
gt; bean, and then set its property. Never actually calling the setter of > the parent bean property. > > Arron. > > > Elijah Jacobs wrote: > > >thanks for the reply, Scott > > > > > >My syntax looks okay on the jsp side and since the getExtrainfo

Re: Examples using struts tags

2002-03-13 Thread Elijah Jacobs
here's a good one.. http://stealthis.athensgroup.com/presentations/ let me know if you find others. - ej - Original Message - From: "sanjeev_dutt" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, March 13, 2002 9:41 AM Subject: Examples using stru

Re: nested:iterate - set method not called

2002-03-10 Thread Elijah Jacobs
s using a lowercase 'i' in the word info? > > Scott > > > -Original Message- > > From: Elijah Jacobs [SMTP:[EMAIL PROTECTED]] > > Sent: Monday, March 11, 2002 10:27 AM > > To: Struts Users Mailing List > > Subject: nested:iterate - set method

nested:iterate - set method not called

2002-03-10 Thread Elijah Jacobs
Hi, I am able to list the elements on my Vector just fine, but I noticed that when I do a submit the set method is not being called, hence the field is empty when it gets to the action class. Can someone suggest to me what the problem might be? my code is below. thanks, - ej *** code pub

Re: Need help - - Desparate

2002-03-09 Thread Elijah Jacobs
do you have a setters and getters for the breadCrumbTrail attribute in your SearchBrowseResults bean? - ej - Original Message - From: "Nishant Asthana" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 09, 2002 4:49 PM Subject: Need help - - Desparate > Hi , > I have tr

set Method for nested list not being called.

2002-03-08 Thread Elijah Jacobs
Hi all, I am able to display my vector of objects in the jsp page just fine, but when I submit the page, I noticed that my set method for the vector of objects is not being called, hence when it get's to the action class the vector of objects is null. I took a look at the StrutMonkey example fro

Re: nesting: iterate cannot find attrribute

2002-03-07 Thread Elijah Jacobs
;Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Thursday, March 07, 2002 10:57 AM Subject: RE: nesting: iterate cannot find attrribute > Looks like an issue of scope. > > Mark > > -Original Message- > From: Elijah Jacobs [mailto:[EMAIL PROTECTED]] &

nesting: iterate cannot find attrribute

2002-03-06 Thread Elijah Jacobs
Hi All, I'm trying to do a simple iterate .. it's even simpler that than one I download from Arron Bate's site since the formbean has the reference to the list of objects. In my FormBean I have: private Vector x = null; public Object[] getX(){ return this.x.toArray(); } public void s

Re: nesting tags cannot find EmptyTag

2002-03-06 Thread Elijah Jacobs
eblogic parses and checks the tld's). The location > and name of the tld's don't matter, as long as it matches the definition > in your web.xml and JSP's etc. > > Hopefully that will get you working. > > Arron. > > > Elijah Jacobs wrote: > > >

nesting tags cannot find EmptyTag

2002-03-06 Thread Elijah Jacobs
Hi All, I am using nested-tag from Arron Bates. I have a working sample in my tomcat webapp, but when I try to run that app with my weblogic 5.1 i get this error: java.lang.NoClassDefFoundError: org/apache/struts/taglib/logic/EmptyTag I can't seem to find anything on the user group under "Empty

Re: creating a variable set to return value of a method - using struts

2002-03-05 Thread Elijah Jacobs
; > > > myMap.put("1", "one"); > struts is designed for presentation logic, so this isn't in it's scope. > > Have you seen Larry's struts white paper at:- > http://stealthis.athensgroup.com/presentations/ > > hope this helps = Keith.

creating a variable set to return value of a method - using struts

2002-03-04 Thread Elijah Jacobs
Hi All, I am trying to achieved the following code below using only tags: <% HashMap myMap = someClass.getMyMap(); myMap.put("1", "one"); %> someClass would return a HashMap. I can't seem to find an example of how this can be done. can someone point me to an example (or show me a example)?

NullPointerException & unsynchronize problem on select tag

2002-03-02 Thread Elijah Jacobs
Hi All, I am using Struts 1.0 on Windows 2000 running Weblogic 5.x There's a lot of code on the bottom so please bear with me. I supplied the code to give a clear understanding of what I'm doing. I promise to be concise and to the point. The page i am creating mypage.jsp displays fine initialy

Re: cannot find tag library

2002-02-04 Thread Elijah Jacobs
ry giving your tag handler class a proper package name and put that in the > app.tld file. > > -Max > > - Original Message - > From: "Elijah Jacobs" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]> > Sent: Monday

Re: RE: [Fwd: Re: Hi....]]

2002-02-04 Thread Elijah Jacobs
Hi Vic, Could you elaborate a lilttle more on why you do not suggest a good number of custom tags in struts? I'll be buidling a software for a client that requires a lot of custom tags and am right now evaluating struts. any input would be helpful, thanks. - ej - - Original Message - F

cannot find tag library

2002-02-04 Thread Elijah Jacobs
Hi all, I am using Tomcat 4.01; Windows 2000 ; Struts v1.0 I created a tag which displays a message on the screen. I followed the basic layout of the example that came with struts. by "layout" I mean: 1. I created a tag under the /classes directory. this time I put it right under the /classe