RE: Using JSTL Instead of Nested Tags

2004-03-25 Thread Mike Duffy
gt; > From: Mike Duffy [mailto:[EMAIL PROTECTED] > > Sent: Thursday, March 25, 2004 4:46 PM > > To: Struts Users Mailing List > > Subject: Using JSTL Instead of Nested Tags > > > > > > I'm trying to convert an application from Struts display tags to JSTL

RE: Using JSTL Instead of Nested Tags

2004-03-25 Thread Robert Taylor
e- > From: Mike Duffy [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 25, 2004 4:46 PM > To: Struts Users Mailing List > Subject: Using JSTL Instead of Nested Tags > > > I'm trying to convert an application from Struts display tags to JSTL (still using > Struts as th

Using JSTL Instead of Nested Tags

2004-03-25 Thread Mike Duffy
I'm trying to convert an application from Struts display tags to JSTL (still using Struts as the MVC). I am having some difficulty converting nested tags to JSTL. Can anyone offer any guidance? Thanks. Mike __ Do you Yahoo!? Yahoo! Finance Tax Center -

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-29 Thread Martin Sturzenegger
et the list to empty properly. > >HTH. >regards, >Shirish > >-Original Message- >From: Martin Sturzenegger [mailto:[EMAIL PROTECTED] >Sent: Friday, February 27, 2004 3:28 PM >To: Struts Users Mailing List >Subject: RE: Problem in nested tags- Very Urgent - Please Help

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread shirishchandra.sakhare
? If the form is session scoped, make sure you reset the list to empty properly. HTH. regards, Shirish -Original Message- From: Martin Sturzenegger [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 3:28 PM To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Martin Sturzenegger
>> } >> }; >> this.actionList = ListUtils.lazyList(new ArrayList(), >> factory); >> } >> >> // Getter/setters for list omitted >> } >> >> -Original Message- >> From

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Parthasarathy Kesavaraj
Thx chris for pointing to this... With Regards Partha -Original Message- From: McCormack, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 5:51 PM To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very Urgent - Please Help >i'll try to use l

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread shirishchandra.sakhare
TED] Sent: Friday, February 27, 2004 1:21 PM To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very Urgent - Please Help >i'll try to use lazy list once i finish off my work Eugh... We have all done it, but that is how botches get in to production code. People usually get

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread McCormack, Chris
IL PROTECTED] Sent: 27 February 2004 09:45 To: 'Struts Users Mailing List' Subject: RE: Problem in nested tags- Very Urgent - Please Help Thanks mark , hubert and paul. i removed scope = request and it is working fine now. (Temporary fix :-)) i'll try to use lazy list once i f

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Parthasarathy Kesavaraj
PM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from it. Cheers Mark On 26 Feb 2004, at 15:57, Paul, R. Chip wrote: > Note: I think this i

Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Parthasarathy Kesavaraj
I am having an OrganzationVO inside my form-bean. The OrganzationVO has a collection of AddressVOs. I am using nested tags like this. while submitting the form I am getting an exception like this. 2004-02-26 18:17:08,133

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
rm-bean. The OrganzationVO has a collection of AddressVOs. I am using nested tags like this. while submitting the form I am getting an exception like this. 2004-02-26 18:17:08,133 [ExecuteThread: '12' for queue: 'web

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
Or use the Commons Collections LazyList which handles this problem automatically. -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:09 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help shirish

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
ry 26, 2004 8:09 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help shirish posted this a few times. if you're scoping to request you'll need a while loop in your getFoo(int index) method public class OrgManagementForm extends ActionForm

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
:49 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example of how to use lazy list if you have one. On 26 Feb 2004, at 15:33, Paul, R. Chip wrote: > Or use the Commons Collections LazyList which handles this

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Hubert Rabago
stUtils.lazyList(new ArrayList(), > factory); > } > > // Getter/setters for list omitted > } > > -Original Message- > From: Mark Lowe [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 26, 2004 8:49 AM > To: Struts Users Mailing List > Subje

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
(), factory); } // Getter/setters for list omitted } -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:49 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example o

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Parthasarathy Kesavaraj
Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:35 PM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from it

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
1:24 AM To: 'Struts Users Mailing List' Subject: RE: Problem in nested tags- Very Urgent - Please Help Hi Thanks for ur replies. But i could not understand what actually is the problem and how lazy list will solve it. This is the first time i am coming across lazy list. can u explain

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Parthasarathy Kesavaraj
:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:35 PM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from it. Cheers Mark On 26 Feb 2004, at 15

Re: problem with nested tags

2004-01-26 Thread Claire Wall
t;[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Monday, January 26, 2004 12:19 PM Subject: problem with nested tags > Hi all, > I have problem in invoking a javascript for following code... > > > > >

problem with nested tags

2004-01-26 Thread Marco Mistroni
Hi all, I have problem in invoking a javascript for following code... Active since // I should associate thi

Re: Nested tags not working with session-scope form

2004-01-02 Thread Arron Bates
If you can simply switch "nested" for "html" or "logic", then the markup isn't specifically made for the nested tags. ie: you've probably used the "name" attribute etc which the nested tags don't need. If you're able to use "htm

Nested tags not working with session-scope form

2004-01-02 Thread Joe Porcheddu
ped action forms and nested tags, and it worked fine. I just can't figure out why it works in one web-app and not the other. Thanks, Joe

Re: Nested tags always break

2003-12-03 Thread Rick Mann
that or not ;-). What I meant to say is "I have a reproducible case", and "it happens on a regular basis (as I create new JSP code that uses the nested tags, sometimes they work and sometimes they don't)". -- Rick --

Re: Nested tags always break

2003-12-03 Thread Arron Bates
Rick, You still having this problem?... can I see the tag markup that's causing the problems?... If the root tag is picking up the name of a valid bean, and the iterate tag has it's property attribute properly set, then I assure you that you don't need the name attribute in the write tag. I'm ho

Nested tags always break

2003-11-30 Thread Rick Mann
I have a situation where I can use , , and then *must* use , rather than omitting the name attribute. If I do, I get an exception "No getter method for property foo[0].bar of bean ac". Now, this code was working fine, but I made some changes to the bean (I'm using torque). I know it's not (or a

Re: Nested tags : Desperately trying to get recursion to work

2003-11-11 Thread Arron Bates
Jyothi, You still having problems with this? Sorry that I haven't gotten back to you, but work's been quite busy and not enough hours inbetween. Just let me know. Arron. PS: you'll get my attention faster with this email address. :) > Hi, > > I am very new

Re: Nested tags : Desperately trying to get recursion to work

2003-11-04 Thread Max Cooper
I don't know anything about the nested tags, but it seems very unlikely that this code, as a complete JSP, could work: <%@ taglib uri="/WEB-INF/tld/struts-nested.tld" prefix="nested" %> What bean is "objName" a property of? This seems to correspo

Nested tags : Desperately trying to get recursion to work

2003-11-04 Thread Jyothi Panduranga
Hi, I am very new to nested tags and I am trying to display a tree using nested tags. I followed Arron's MonkeyTree example. I have been getting 'javax.servlet.ServletException: Cannot find bean in any scope' exception (I have pasted exception trace at the end of this ema

HELP! Pager tags and Nested tags

2003-10-09 Thread Joseph . Sadove
HELP PLEASE!! I put a post out yesterday to the list trying to see if anyone has had success using the Pager (jsptags.com) tags with the Struts nested tags. rather than just interating over bean:write with a logic:iterator. If you can please please help, look at my posting yesterday for

pager tags and nested tags

2003-10-08 Thread Joseph . Sadove
I would like to use the full functionality of the nested tags, including complicated forms within the nested:iterate block. I've searched the Mail Archive for examples/experiences of using the the pager tags ( http://jsptags.com/tags/navigation/page). It seems that everyone who uses the

Argument Type mismatch Exception...(Nested Tags)

2003-09-30 Thread Rajanala, Srinivas
aying the line number(or tag name) in the JSP file. Is there anything wrong in using nested tags in my JSP page? I have following in the JSP file under

RE: Nested Tags

2003-08-27 Thread Tarek M. Nabil
s Users Mailing List' Subject: RE: Nested Tags > I have a problem using a Tag for the property of another tag. > Isn't that possible? > Example: > > tempArray[0] = property="" />; AFAIK, that's a no-no. It will try to evaluate the outer tag

RE: Nested Tags

2003-08-27 Thread Tarek M. Nabil
I always wondered what that was for. Thanks a million Nagendra :))) -Original Message- From: Nagendra Kumar O V S [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 6:08 PM To: [EMAIL PROTECTED] Subject: Re: Nested Tags hi, jsp compiler doest the nesting of such type u need

RE: Nested Tags

2003-08-27 Thread Slattery, Tim - BLS
> I have a problem using a Tag for the property of another tag. > Isn't that possible? > Example: > > tempArray[0] = property="" />; AFAIK, that's a no-no. It will try to evaluate the outer tag before finding the inner one. The code that processes the "property" property knows noth

Re: Nested Tags

2003-08-27 Thread Nagendra Kumar O V S
List Date: Wednesday, August 27, 2003 08:17:08 PM To: Struts (E-mail) Subject: Nested Tags  Hi everyone,I have a problem using a Tag for the property of another tag. Isn't that possible?Example:tempArray[0] = " />;When I d

Re: Nested Tags

2003-08-27 Thread Jeff Kyser
nope. On Wednesday, August 27, 2003, at 09:44 AM, Tarek M. Nabil wrote: Hi everyone, I have a problem using a Tag for the property of another tag. Isn't that possible? Example: tempArray[0] = " />; When I do that, I get the following error: ERROR 2003-08-27 17:35:06,546 standish.c

Nested Tags

2003-08-27 Thread Tarek M. Nabil
Hi everyone, I have a problem using a Tag for the property of another tag. Isn't that possible? Example: tempArray[0] = " />; When I do that, I get the following error: ERROR 2003-08-27 17:35:06,546 standish.charm.web.ErrorAction - Error details and stack trace: javax.servlet.Servle

RE: nested tags

2003-08-27 Thread Edgar P Dollin
g List' > Subject: nested tags > > > Hi all, > > What is the status with tags? Should I use them > or should I avoid using them? > > Thanks, > Erez > > > - To unsubscribe, e-ma

RE: Nested Tags

2003-08-27 Thread Arron Bates
The nested tags are simply different. The advantages of using them is not replicated in the JSTL/EL or any other tag system. The nested tags directly extend the Struts html, bean and logic tag library and add the nested context. Because they are different, they have never been on the

RE: Nested Tags

2003-08-26 Thread Erez Efrati
Users Mailing List Subject: RE: Nested Tags The power of nested tags cannot be understated. Id advise you to use them (where applicable) for they are really useful, they make simple a lot of things that would otherwise be a nightmare to implement. -Original Message- From: Erez Efrati

nested tags

2003-08-26 Thread Erez Efrati
Hi all, What is the status with tags? Should I use them or should I avoid using them? Thanks, Erez - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Nested Tags

2003-08-26 Thread Andrew Hill
The power of nested tags cannot be understated. Id advise you to use them (where applicable) for they are really useful, they make simple a lot of things that would otherwise be a nightmare to implement. -Original Message- From: Erez Efrati [mailto:[EMAIL PROTECTED] Sent: Tuesday, 26

Re: Nested Tags

2003-08-26 Thread Jeff Kyser
I think they are great - allows you to 'scope' your tags, and makes iterators easier and recursion possible. And you can develop reusable jsp fragments since the scope is local to the object of interest. Read up on them at www.keyboardmonkey.com - excellent documentation and examples there... -jeff

Nested Tags

2003-08-26 Thread Erez Efrati
Hi all, What is the status with tags? Should I use them or should I avoid using them? Thanks, Erez - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Nested tags and recursive inclusion

2003-08-22 Thread Yamini Krishnamurthi Ayyagari
PROTECTED] Sent: Friday, August 22, 2003 8:38 PM To: 'Struts Users Mailing List' Subject: RE: Nested tags and recursive inclusion I use this all the time with Tomcat. Maybe this is a websphere bug? -Original Message- From: Yamini Krishnamurthi Ayyagari [mailto:[EMAIL PROTECTED

RE: Nested tags and recursive inclusion

2003-08-22 Thread Paul McCulloch
I use this all the time with Tomcat. Maybe this is a websphere bug? -Original Message- From: Yamini Krishnamurthi Ayyagari [mailto:[EMAIL PROTECTED] Sent: 22 August 2003 11:53 To: Struts Users Mailing List Subject: Nested tags and recursive inclusion Hello, I am trying to make

RE: Nested tags and recursive inclusion

2003-08-22 Thread PREETAM Balijepalli
Mailing List Subject: Nested tags and recursive inclusion Hello, I am trying to make recursive inclusion work with nested tags on Websphere but am running into some problems. This is what my code looks like. In main jsp: But I get an exception stating: Illegal to flush within a custom

Nested tags and recursive inclusion

2003-08-22 Thread Yamini Krishnamurthi Ayyagari
Hello, I am trying to make recursive inclusion work with nested tags on Websphere but am running into some problems. This is what my code looks like. In main jsp: But I get an exception stating: Illegal to flush within a custom tag. If I do not flush I get an invalid jsp:include

problem with nested tags and form bean

2003-08-19 Thread Juan Alvarado
I have the following scenarion. A form bean with a private member: private LineItem item = null; with appropriate getters and setters. In one of my actions I call setItem and obviously pass it a LineItem object. LineItem is composed of: private Product product; private int quantity; private Str

Help with using nested tags with dynamic forms

2003-07-31 Thread Katie Wright
Hello, After joining the mailing list today, I found out that I had posted the an e-mail to the wrong group (developers as opposed to users) so I am posting here in hopes of getting help on the following: I am trying to create an HTML form like so: Item1Label Item1Textbox Item2Label

Re: nested tags

2003-07-03 Thread Pramod . P
me too have the same opinion!!! nested-tags is working pretty cool!!! please post the exact issue in your application. thanks, Pramod Mike Duffy

Re: nested tags

2003-07-03 Thread Mike Duffy
I did not try to run the example specifically; however, I've built some applications based on the Monkey Tree source and I will say that nested tags are very elegant, very cool. It does work. If you have a speciffic question, the guy who wrote the nested tags code, Arron Bates, is very

Re: Nested tags : trying to get recursion to work

2003-07-03 Thread Sloan Seaman
es to work properly -- Sloan - Original Message - From: "Pratima Aiyagari" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 02, 2003 6:33 PM Subject: Nested tags : trying to get recursion to work > I am trying to get recursive inclusion to work

Re: Nested tags : trying to get recursion to work

2003-07-02 Thread Pratima Aiyagari
Never mind .. I got it to work. - P --- Pratima Aiyagari <[EMAIL PROTECTED]> wrote: > I am trying to get recursive inclusion to work with > the nested tags. > > Here is what I'm trying to do: I have a directory, > which might have a bunch of files or more > director

Nested tags : trying to get recursion to work

2003-07-02 Thread Pratima Aiyagari
I am trying to get recursive inclusion to work with the nested tags. Here is what I'm trying to do: I have a directory, which might have a bunch of files or more directories inside of it. Just like any regular directory structure. And I need to display all the directories and the files i

nested tags

2003-07-02 Thread Sloan Seaman
Has anyone every gotten the nested tags to work like in the Monkey Tree examples? I can't even get the examples to work. It seems like the iterator tag has a bug in it... It doesn't seem to iterate to the next object after it comes out of the recursion...

Nested Tags -Monkey Tree White-space issue

2003-06-20 Thread Ashok Madhavan
hi All, i am generating a tree based on the Monkey tree pattern given out by Aaron. It works fine. But the html page it churns out has lots of white spaces. I would like not to have those white spaces as my tree is quite big and it takes a long time for the page to load. I am pre-compiling my jsp

Inconsistent use of property in nested tags

2003-06-17 Thread ScottC
A extracts the "value" of aPropertyInAClass and displays the value on my .jsp. However, when working with , property translates to and "property" is really the name of the property, not the value of the property in question (as it was in the tag). I have been frustrated trying to get the "value

Re: nested tags

2003-06-09 Thread Arron Bates
jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:494) > > This makes me wonder if struts framework is actually > needed for nested tags. Any help would be > appreciated.. They extend the Struts tags, so to that end they need the struts library on hand to even r

Re: nested tags

2003-06-09 Thread Arron Bates
The nested tags extend the Struts html and logic tags. So to use an OO analogy, the nested tags is to the logic tags the same way that a Ferrari is to a car. :P Nested tags organise two things. The bean reference (the "name" attribute), and the "property" property. The prop

Re: nested tags

2003-06-09 Thread arvind ramaswami
Nested tags rock, as you have to deal with only one level in the heirarchy at a time. I have been running into some problems using nested tag for recursion, though. I thought you might help me out while we are on same subject. My questions are : 1. Does the nested tag lib require struts to be

Re: nested tags

2003-06-09 Thread Frances Aleah Z. de Guzman
thanks for the info and the link...i just visited it and i think it will help me alot...thanks again. On Tuesday 10 June 2003 09:51 am, Jeff Kyser wrote: > Nested tags rock whereas logic tags, while perhaps doing > the same thing are more cumbersome. > > Scoping is much more intuiti

Re: nested tags

2003-06-09 Thread Jeff Kyser
Nested tags rock whereas logic tags, while perhaps doing the same thing are more cumbersome. Scoping is much more intuitive - instead of having to talk about 'myForm.myContainer.myObject, you can just use nested:iterate and nested:nest to make your code much easier to read. And, since yo

Re: nested tags

2003-06-09 Thread Frances Aleah Z. de Guzman
oops sorrywhat i meant was between nested tags and logic tags On Tuesday 10 June 2003 09:56 am, Frances Aleah Z. de Guzman wrote: > what is the difference between nested tags and html tags? -- Frances Aleah Z. De Guzman SA/Programmer Ingenium Technology, Inc. http://www.ingenium.com

nested tags

2003-06-09 Thread Frances Aleah Z. de Guzman
what is the difference between nested tags and html tags? -- Frances Aleah Z. De Guzman SA/Programmer Ingenium Technology, Inc. http://www.ingenium.com.ph Disclaimer : This message is intended only for the named recipient. If you are not the intended recipient you are notified that disclosing

RE: Using nested tags

2003-06-05 Thread Phillip Qin
visit keyboardmonkey.com -Original Message- From: lcl [mailto:[EMAIL PROTECTED] Sent: June 5, 2003 5:34 AM To: [EMAIL PROTECTED] Subject: Re: Using nested tags I need online tutorial :-) "Mark Galbreath" <[EMAIL PROTECTED]> :[EMAIL PROTECTED] > you didn't

Re: Using nested tags

2003-06-05 Thread lcl
I need online tutorial :-) "Mark Galbreath" <[EMAIL PROTECTED]> :[EMAIL PROTECTED] > you didn't. would you like lessons? > > -Original Message- > From: lcl [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 04, 2003 11:55 PM > > Hi Dan, > > Sorry for post it to your email directly. -

RE: Using nested tags

2003-06-04 Thread Mark Galbreath
you didn't. would you like lessons? -Original Message- From: lcl [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 11:55 PM Hi Dan, Sorry for post it to your email directly. - To unsubscribe, e-mail: [EMAIL PR

Re: Using nested tags

2003-06-04 Thread lcl
o increase it > dynamically. > > -Dan > > - Original Message - > From: "Huan Le" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, June 03, 2003 11:59 AM > Subject: Using nested tags > > > > Hello: > > &g

Re: Using nested tags

2003-06-04 Thread Dan Tran
. -Dan - Original Message - From: "Huan Le" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 03, 2003 11:59 AM Subject: Using nested tags > Hello: > > Could somebody explain this error message for me? > E SRVE0026E: [

RE: Using nested tags

2003-06-04 Thread Phillip Qin
ubject: RE: Using nested tags It would be more helpful if you actually posted the usage that is causing this. Apparently, you have one tag driving the across array bounds. Classic fencepost error. Mark -Original Message- From: Huan Le [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003

RE: Using nested tags

2003-06-04 Thread Mark Galbreath
PROTECTED] Subject: Using nested tags Hello: Could somebody explain this error message for me? E SRVE0026E: [Servlet Error]-[BeanUtils.populate]: java.lang.ArrayIndexOutOfBoundsException I'm using nested tags to display a list of info. Whenever, clicking the submit button, I get the error above

Using nested tags

2003-06-04 Thread Huan Le
Hello: Could somebody explain this error message for me? E SRVE0026E: [Servlet Error]-[BeanUtils.populate]: java.lang.ArrayIndexOutOfBoundsException I'm using nested tags to display a list of info. Whenever, clicking the submit button, I get the error above. Do you know any solutio

nested tags - writing to a file

2003-05-31 Thread Tammana, Sobha
I am using struts in my application which collects information from a user using multiple forms. After the user enters all the information, I generate a report using nested tags on my beans. (I use, nested:iterate, nested:nest to get to the bean properties.) I have to send this report (web page or

Re: Nested tags and recursion (Arron tree example)

2003-03-17 Thread David Graham
You could also download a recent nightly Struts build that includes the same fixes contained in Arron's jar. David From: Distrox <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Nested tags and recursio

Re: Nested tags and recursion (Arron tree example)

2003-03-17 Thread Distrox
Hello again! > > I was trying to visualize/interact with a tree structure > > using Struts, and looking through the archives I found > > references to using Nested tags, which at that moment were an ... > However, Arron has made some updates to it and they won't be r

RE: Nested tags and recursion (Arron tree example)

2003-03-17 Thread Sri Sankaran
> I was trying to visualize/interact with a tree structure > using Struts, and looking through the archives I found > references to using Nested tags, which at that moment were an > extension provided by Arron Bates (http://www.keyboardmonkey.com). > > As I believe, since

Nested tags and recursion (Arron tree example)

2003-03-17 Thread Distrox
Hello you all! I was trying to visualize/interact with a tree structure using Struts, and looking through the archives I found references to using Nested tags, which at that moment were an extension provided by Arron Bates (http://www.keyboardmonkey.com). As I believe, since Struts 1.1

Re: [NESTED-TAGS]Anyone using nested tags with the latest nightly build?

2003-03-07 Thread Arron Bates
> -- IMG Tag - > [..cut..] > My only issue: > The release of the nested tags from 1.1b2 let you get away with > some nested tag "mis-use" > [..cut..] The reason why it stopped working in the recent nightly is that the nested tags have been gutted, a

Re: [NESTED-TAGS]Anyone using nested tags with the latest nightly build?

2003-03-07 Thread Jeff_Mychasiw
n occasion provide options that don't use the "name" and "property" attributes. These uses will then fall outside the nested context, and will most likely cause error. To take advantage of these options, markup using the original tag for these cases." My only issue: The rel

Re: [NESTED-TAGS]Anyone using nested tags with the latest nightly build?

2003-03-06 Thread Arron Bates
"pageKey" instead of the name/property duo, and internally the nested tags are evaluating the property property to an empty string, and the attempting to dance. As for the radio tag in the include file... it will depend on the context of where it's included in the parent file. Can I get

[NESTED-TAGS]Anyone using nested tags with the latest nightly build?

2003-03-06 Thread Jeff_Mychasiw
I Had read that Arron had submitted patches to the nested tags to allow the upgrade to tomcat 4.1.x. (I assume that the zip jakarta-struts-20030306 contains the nested fixes) We are currently developing on TC4.04 with 1.1b2. I dropped that latest binaries in and got several problems (compile

RE: [update] nested tags...

2003-03-03 Thread Arron Bates
o change too many things at once and so am trying to stick with Struts 1.1b3 than move to the nightly. > > > Sri > > -Original Message- > From: Arron Bates [mailto:[EMAIL PROTECTED] > Sent: Friday, February 28, 2003 12:53 AM > To: [EMAIL PROTECTED] > Subje

RE: [update] nested tags...

2003-03-01 Thread Arron Bates
Sri, Don't know how the other one clapped out, but i made another one, tested out okay (JDK Jar tool). Try this one (link for convenience)... http://www.keyboardmonkey.com/downloads/km-nested-v2.03.jar I understand that people aren't lazy, just pragmatic. :) Arron. > Can you please

RE: [update] nested tags...

2003-02-28 Thread Sri Sankaran
change too many things at once and so am trying to stick with Struts 1.1b3 than move to the nightly. Sri -Original Message- From: Arron Bates [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 12:53 AM To: [EMAIL PROTECTED] Subject: [update] nested tags... Peoples, Importa

[update] nested tags...

2003-02-27 Thread Arron Bates
Peoples, Important changes just committed into CVS for the nested tags. 1) Copyright date in the header license is updated to include 2003! 2) The internal changes to get them dancing with Tomcat 4.1.18 & more. For those too lazy to get the entire distrib of the next nightly, you can get

Nested tags

2003-02-26 Thread Sloan Seaman
How do I pull this off? I'm guessing I have to do something with nested tags but I'm not sure what. Thanks! -- Sloan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Nested tags

2003-02-25 Thread Karr, David
You can't nest custom tags in the attribute values of custom tags. If you're using the JSTL, you might consider using Struts-EL, which is a contrib library in the Struts distribution. If you use that, your example would look like this: Promo Mgmt > -Original Me

Nested tags

2003-02-25 Thread Sloan Seaman
I have the following in a jsp page: "/> The page blows up with a jsp.error.unterminated.tag error. I'm guessing I have to use a nested tag to pull this off, but I don't know how. Could someone help me out. Here is the full block of code. The tag is a custom tag that iterates and places the bea

RE: [ANN?] New Nested Tags -or- Nesters, lend me your containers...

2003-02-24 Thread Arron Bates
new tomcat. The tag hierarchy walking isn't reliable, and the old nested tags relied on it. Definitely the easiest thing to do is to simply use the tag. I'll look again at nesting inside for the various containers. Arron. > Alrighty, I know how to make it crash (don't fret Arr

RE: [ANN?] New Nested Tags -or- Nesters, lend me your containers...

2003-02-24 Thread Sri Sankaran
format will not work. Haven't looked at the innards of to see how it interprets things when it is inside an . Sri > -Original Message- > From: Arron Bates [mailto:[EMAIL PROTECTED] > Sent: Sunday, February 23, 2003 6:39 PM > To: Struts Users Mailing List > Subject: RE: [

RE: [ANN?] New Nested Tags -or- Nesters, lend me your containers...

2003-02-23 Thread Arron Bates
You had me going there for a bit. Even made another test war to do exactly what your snippet prescribed, but as long as it's working. Hope the other app turns out to be not my issue too... :P Waitin for the word... Arron. > Never mind... > > I had updated the WEB-INF/lib of ap-1 and tested ap-

RE: [ANN?] New Nested Tags -or- Nesters, lend me your containers...

2003-02-23 Thread Sri Sankaran
: Sri Sankaran Sent: Sunday, February 23, 2003 10:05 AM To: Struts Users Mailing List Subject: RE: [ANN?] New Nested Tags -or- Nesters, lend me your containers... Arron: Still having the problem reported in bug # 16916. Following is the test configuration: OS: Windows XP Professional Cont

RE: [ANN?] New Nested Tags -or- Nesters, lend me your containers...

2003-02-23 Thread Sri Sankaran
with more than what you need. Sri -Original Message- From: Arron Bates [mailto:[EMAIL PROTECTED] Sent: Sunday, February 23, 2003 9:06 AM To: [EMAIL PROTECTED] Subject: [ANN?] New Nested Tags -or- Nesters, lend me your containers... Avid Nesters, (you know who you are, no need to l

[ANN?] New Nested Tags -or- Nesters, lend me your containers...

2003-02-23 Thread Arron Bates
Avid Nesters, (you know who you are, no need to lie to yourself) Tomcat 4.1.18 is now on the radar!... The nested tags internals have been re-written primarily to fix the problem with them not working in the new tomcat 4.1.18 jasper engine. It also allows them to be a little more flexible

Validator and Nested Tags

2003-02-19 Thread Jim Krygowski
A few folks posted here in the past regarding the use of the Validator and JSP pages generated using Nested Tags: Colin Hawkett: http://www.mail-archive.com/struts-user@jakarta.apache.org/msg52063.html Thomas Gigen: http://www.mail-archive.com/struts-user@jakarta.apache.org/msg33151.html In each

RE: Simultaneous use of nested tags in two iframes causinginterf erence

2003-02-18 Thread Raible, Matt
rom: Dennis Doubleday [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 18, 2003 10:39 AM > To: 'Struts Users Mailing List' > Subject: Simultaneous use of nested tags in two iframes causing > interference > > > I have two iframes on one page that are both loading v

Simultaneous use of nested tags in two iframes causing interference

2003-02-18 Thread Dennis Doubleday
I have two iframes on one page that are both loading variants of the same tree. I am using the nested library to display the trees (very nice stuff!). However, they seem to be interfering with each other. Each iframe has tags like: The "tree" bean has request scope, and since each

  1   2   3   >