RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Mark Galbreath
. Mark -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 11:44 PM To: Struts Users Mailing List Subject: [OT] Re: 4th Of July Struts Challenge... Kris... this was just awesome! Thanks. You da 'man:) On Tue, Jul 15,'03 (11:25 AM GMT-0400), Kris wrote

RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Andrew Hill
Serializable. Mark -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 11:44 PM To: Struts Users Mailing List Subject: [OT] Re: 4th Of July Struts Challenge... Kris... this was just awesome! Thanks. You da 'man:) On Tue, Jul 15,'03 (11:25 AM GMT

RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Mark Galbreath
put a do before implement and ELs are just scripting in disguise. Bloody Aussie. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 8:23 AM To: Struts Users Mailing List Subject: RE: [OT] Re: 4th Of July Struts Challenge... snip Strictly

RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Mark Galbreath
PROTECTED] Sent: Wednesday, July 16, 2003 8:55 AM To: Struts Users Mailing List Subject: RE: [OT] Re: 4th Of July Struts Challenge... Quoting Mark Galbreath [EMAIL PROTECTED]: A few comments: 1. I got runtime errors when I declared a DynaActionForm bean of type Map; I had to declare

RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Michael Duffy
- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 8:55 AM To: Struts Users Mailing List Subject: RE: [OT] Re: 4th Of July Struts Challenge... Quoting Mark Galbreath [EMAIL PROTECTED]: A few comments: 1. I got runtime errors when I declared

RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Mark Galbreath
Mailing List Subject: RE: [OT] Re: 4th Of July Struts Challenge... It's my understanding that you ONLY get the default if there are no other constructors written. The minute you write ANY constructor, you're on your own. If you still want a default ctor, you've gotta supply it. I'll be happy

RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Kris Schneider
Quoting Michael Duffy [EMAIL PROTECTED]: It's my understanding that you ONLY get the default if there are no other constructors written. The minute you write ANY constructor, you're on your own. If you still want a default ctor, you've gotta supply it. I'll be happy to learn something

RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Andrew Hill
2003 22:30 To: 'Struts Users Mailing List' Subject: RE: [OT] Re: 4th Of July Struts Challenge... I have not found this in the spec, but I believe the no-argument constructor is available at anytime for a concrete class. This would be a good one to test -Original Message- From

Re[2]: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Dirk Markert
: 4th Of July Struts Challenge... MG It's my understanding that you ONLY get the default if MG there are no other constructors written. The minute MG you write ANY constructor, you're on your own. If you MG still want a default ctor, you've gotta supply it. MG I'll be happy to learn something

RE: Re[2]: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Larry Zappeterrini
for a JavaBean. This is so that an instance of the bean can be created using Beans.instantiate(). -Original Message- From: Dirk Markert [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 11:01 AM To: Struts Users Mailing List Subject: Re[2]: [OT] Re: 4th Of July Struts Challenge... Hello Mark

RE: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Micael
[mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 10:27 AM To: Struts Users Mailing List Subject: RE: [OT] Re: 4th Of July Struts Challenge... It's my understanding that you ONLY get the default if there are no other constructors written. The minute you write ANY constructor, you're on your own

RE: Re[2]: [OT] Re: 4th Of July Struts Challenge...

2003-07-16 Thread Craig R. McClanahan
On Wed, 16 Jul 2003, Larry Zappeterrini wrote: Date: Wed, 16 Jul 2003 11:08:46 -0400 From: Larry Zappeterrini [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Re[2]: [OT] Re: 4th Of July Struts Challenge

Re: 4th Of July Struts Challenge...

2003-07-15 Thread Kris Schneider
As it turns out, some of my ideas about a standard property of type Map versus a mapped property were a bit off. So, if you're still interested, here's something I hacked together. You'll notice I used a session scoped form so that Struts doesn't choke when it tries to populate the form.

[OT] Re: 4th Of July Struts Challenge...

2003-07-15 Thread Rick Reumann
Kris... this was just awesome! Thanks. You da 'man:) On Tue, Jul 15,'03 (11:25 AM GMT-0400), Kris wrote: As it turns out, some of my ideas about a standard property of type Map versus a mapped property were a bit off. So, if you're still interested, here's something I hacked together. You'll

Re: 4th Of July Struts Challenge...

2003-07-04 Thread Sandeep Takhar
The answer for the first part is here: http://www.mail-archive.com/[EMAIL PROTECTED]/msg71256.html specifically the part where it talks about nested tags works. The logic:iterate I couldn't get to work and I haven't set up the el stuff, but that would probably work. All you need in the form is

4th Of July Struts Challenge...

2003-07-03 Thread Rick Reumann
Ok stupid subject line, but now I can get back to something I was curious about that I posted around a week ago. I'm really curious how to do accomplish this and yes have tried it a bunch of different ways... Here's the challenge First challenge is just with a regular ActionForm... 1) Your

Re: 4th Of July Struts Challenge...

2003-07-03 Thread Kris Schneider
Okay, so that's way too much work ;-). I'm not sure, but I think one of the issues you're running into is the difference between a standard property of type Map and a mapped property. The first is declared like: public Map getEmployeesMap() public void setEmployeesMap(Map m) The second is

RE: 4th Of July Struts Challenge...

2003-07-03 Thread Mark Galbreath
); } } -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 2:03 PM To: Struts Users Mailing List Subject: 4th Of July Struts Challenge... Ok stupid subject line, but now I can get back to something I was curious about that I posted around a week ago. I'm really