Re: bean defines

2004-06-19 Thread Chris Cranford
From: "Bill Siggelkow" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 19, 2004 3:22 PM Subject: Re: bean defines > Chris, your running into the problem because when you use > where the value is specified in the body of that tag, it create a new >

Re: bean defines

2004-06-19 Thread Bill Siggelkow
Chris, your running into the problem because when you use where the value is specified in the body of that tag, it create a new String scripting variable as well as a page-scoped attribute that is also a String. Instead, you want the actual form bean itself. I am not too sure about how tiles

Re: bean defines

2004-06-19 Thread Chris Cranford
Is anyone familiar with this that can help? - Original Message - From: "Chris Cranford" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, June 18, 2004 3:47 PM Subject: Re: bean defines > And it may be

Re: bean defines

2004-06-18 Thread Chris Cranford
; <[EMAIL PROTECTED]> Sent: Friday, June 18, 2004 3:45 PM Subject: Re: bean defines > It is as if the c-taglib is seeing the bean as a "string" and not as an > ActionForm. I can write: > > > And the output is value in formid. What I'm trying to do is create

Re: bean defines

2004-06-18 Thread Chris Cranford
iner as a tiles attribute. - Original Message - From: "Chris Cranford" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, June 18, 2004 3:39 PM Subject: Re: bean defines > This is my class: > > public class Page

Re: bean defines

2004-06-18 Thread Chris Cranford
- Original Message - From: "Slattery, Tim - BLS" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Friday, June 18, 2004 3:33 PM Subject: RE: bean defines > > Ok, well if I do the following: > > >

RE: bean defines

2004-06-18 Thread Slattery, Tim - BLS
> Ok, well if I do the following: > > > > The name of the form object is written out. But if I want to > access a property on my form cfb, how would I output that > value? If I write , I get > a servlet exception saying that it is unable to find > "pageNumber" in object of class "j

Re: bean defines

2004-06-18 Thread Chris Cranford
ng.String" Any ideas? - Original Message - From: "Paul McCulloch" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Friday, June 18, 2004 12:33 PM Subject: RE: bean defines > will create a new local variabl

RE: bean defines

2004-06-18 Thread Paul McCulloch
will create a new local variable in the jsp. You can access this variable in a scriptlet or an RT expression. is looking for a scoped *attribute* (not a variable) with that name, so it will fail. If you look at the servlet source generated from your jsp source you should see what I'm talking abo