Re: Nested tag in attribute value

2007-07-03 Thread Kris Schneider
Quoting Eric Haszlakiewicz <[EMAIL PROTECTED]>: > On Tue, Jul 03, 2007 at 09:59:59AM -0400, Kris Schneider wrote: > > As you've discovered, embedding one tag in the attribute value of another > tag is > > "illegal" - even if you had gotten the quotes right ;-). You would need to > do > > something

Re: Nested tag in attribute value

2007-07-03 Thread Eric Haszlakiewicz
On Tue, Jul 03, 2007 at 09:59:59AM -0400, Kris Schneider wrote: > As you've discovered, embedding one tag in the attribute value of another tag > is > "illegal" - even if you had gotten the quotes right ;-). You would need to do > something like: > > > Edit > > I think. It's been awhile since I

Re: Nested tag in attribute value

2007-07-03 Thread Kris Schneider
As you've discovered, embedding one tag in the attribute value of another tag is "illegal" - even if you had gotten the quotes right ;-). You would need to do something like: Edit I think. It's been awhile since I've been down that road... Quoting [EMAIL PROTECTED]: > Hi all, > > First of all

Nested tag in attribute value

2007-07-03 Thread Lalit . Kumar
Hi all, First of all, if this query has already been solved earlier, please ignore below question and simply point me to the solution. In one of my projects am using Struts framework along with Hibernate. While Struts provides many tag libs like bean, html and logic I still felt need to create my

nested tag

2003-07-01 Thread Sloan Seaman
: and (treeNode.jsp): But the output I get is: 1 children[0] 3 children[0].children[0] 2 children[1] 3 children[0].children[0] You can see that node 2 is showing a the child of node 1 when it should (as in the java c

Re: Nested tag lib not working.

2002-10-14 Thread Stefan
Thanks, That did it. Stef - Original Message - From: "Hans Bergsten" <[EMAIL PROTECTED]> To: "Tag Libraries Users List" <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 12:06 AM Subject: Re: Nested tag lib not working. > Stefan wrote: > >

Re: Nested tag lib not working.

2002-10-14 Thread Hans Bergsten
Stefan wrote: > Hi, > > I am attempting to use a few tags in a nested pattern and am getting an error for my >trouble. The inner tag is derived from a database recordset that I am looping over >with a forEach tag: > > ... > > pageContext.setAttribute("r", r); > > ... > > end="${param.begin

Nested tag lib not working.

2002-10-14 Thread Stefan
Hi, I am attempting to use a few tags in a nested pattern and am getting an error for my trouble. The inner tag is derived from a database recordset that I am looping over with a forEach tag: ... pageContext.setAttribute("r", r); ... }"/> ... The error: jsp:94: expected `>' at ``$''

Re: Nested Tag Libraries

2002-05-30 Thread Hans Bergsten
Just adding to what Shawn said, you may also want to try a joined query instead of repeatedly accessing the database. It should be more efficient in most databases. With the JSTL actions, you can then take care of the display details when you render the table instead: SELECT * FROM Names

Re: Nested Tag Libraries

2002-05-30 Thread Shawn Bayern
On Thu, 30 May 2002, Hughes, Matt wrote: > Yeah, it's really very pseudocode, but I think it's understandable. > So I've created three generic tags: connection, resultset, and column. > How do I recreate those kinds of nested while loops using tags. I > almost want to put the beginning of th

Nested Tag Libraries

2002-05-30 Thread Hughes, Matt
Ok basically I want to do something really simple but I'm not exactly sure how to do it with tag libraries. I have three tables: name, address, phone. Each name can have multiple addresses, and each address can have multiple phones. So using plain old jsp it would look something like: rs1 = "se