Re: Struts 1.1 - html:select and html:options usage

2005-08-19 Thread Rahul P Akolkar
[EMAIL PROTECTED] wrote on 08/18/2005 06:29:41 PM: > Hi I'm new to struts and having problems referencing a nested collection of > objects for display in an dropdown list using and > tags user@struts.apache.org [ http://struts.apache.org/mail.html ] -Rahul

Re: Struts Validator - missing longRange and doubleRange

2005-08-11 Thread Rahul P Akolkar
"Givler, Eric" <[EMAIL PROTECTED]> wrote on 08/10/2005 08:16:25 AM: > Our development tool at the office includes an older version of > Struts (v1.16). The tool mentions some incompatibilities with newer > versions of struts, so we have not changed this. Anyway, there is a > "Validator" in strut

Re: Struts integration

2005-01-17 Thread Rahul P Akolkar
> well, how else would I know if that's just a string I need > to send verbatim to the client, or if I need to retieve the actual > URL another way? of course, the resul will be an href attribute > sent to the client anyway. > You're tempting me to reply, so let me blame you for this email ;-) W

Re: Struts integration

2005-01-17 Thread Martin Cooper
On Mon, 17 Jan 2005 22:17:43 +0100, luca <[EMAIL PROTECTED]> wrote: > > apologies if I continue this thread on this list. Martin, > what's the name of the Struts list you mentioned? http://struts.apache.org/using.html#Lists -- Martin Cooper > Rahul P Akolkar wrote: > > I will assume that you w

Re: Struts integration

2005-01-17 Thread luca
apologies if I continue this thread on this list. Martin, what's the name of the Struts list you mentioned? Rahul P Akolkar wrote: I will assume that you want to give differential treatment for struts vs. non-struts "href"s (though I can't be sure this is even required without looking at the code

Re: Struts integration

2005-01-17 Thread Rahul P Akolkar
> Someone told me that they would like to use WALL with struts, > but they have no easy way to invoke actions > (). I will assume that you want to give differential treatment for struts vs. non-struts "href"s (though I can't be sure this is even required without looking at the code). Given that

Re: Struts integration

2005-01-17 Thread Martin Cooper
On Mon, 17 Jan 2005 21:05:58 +0100, luca <[EMAIL PROTECTED]> wrote: > > Hallo everyone again, I maintain and develop a tag-library (WALL) > > Among other things I have a tag called a (). > > Someone told me that they would like to use WALL with struts, > but they have no easy way to invoke actio

RE: struts-logic counterpart of this...

2004-11-18 Thread Karr, David
> -Original Message- > From: luca [mailto:[EMAIL PROTECTED] > > Karr, David wrote: > > > If your web container doesn't support JSP 2.0, and you want > to use the > > EL in the attributes of your Struts tags, then you'll need > to utilize > > the "Struts-EL" library, which you'll find

Re: struts-logic counterpart of this...

2004-11-18 Thread luca
Karr, David wrote: Well, first of all, there's no technical reason you can't use the JSTL and Struts taglibs on the same page. you are perfectly right. In fact this is what I am doing at the moment and it works. This is simply an elegance and maintanance issue though. I am dealing with an existing

RE: struts-logic counterpart of this...

2004-11-17 Thread Karr, David
Well, first of all, there's no technical reason you can't use the JSTL and Struts taglibs on the same page. An important question is what web container you're using. If your web container supports JSP 2.0, then you can use the EL in your JSP (assuming you use the servlet 2.4 doctype, and a couple

Re: Struts integration

2004-11-02 Thread luca
It works! thank you luca Bill Siggelkow wrote: Here's a way w/o using JSP 2.0 EL: Bill Siggelkow [EMAIL PROTECTED] -Original Message- From: luca [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 02, 2004 3:28 AM To: Tag Libraries Users List Subject: Struts integration Guys, I

RE: Struts integration

2004-11-02 Thread Bill Siggelkow
Here's a way w/o using JSP 2.0 EL: Bill Siggelkow [EMAIL PROTECTED] > -Original Message- > From: luca [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 02, 2004 3:28 AM > To: Tag Libraries Users List > Subject: Struts integration > > > Guys, I need to integrate a new tag-li

RE: Struts html:text value initialized using JSTL

2004-02-13 Thread Wendy Smoak
> From: Just Fun 4 You [mailto:[EMAIL PROTECTED] > " /> JSTL works best in conjunction with the Struts-EL tags: However, if something on the page fails validation, and the user has changed this value, it's going to revert back to the value in 'ventureObject.startDate' when the form is re-displa

Re: Struts html:text value initialized using JSTL

2004-02-13 Thread Kris Schneider
You can't use a tag as the attribute value for another tag. It has nothing to do with Struts or JSTL. Try using Struts-EL: <%@ taglib prefix="html" uri="http://jakarta.apache.org/struts/tags-html-el"; %> You'll find the required JAR file in contrib/struts-el/lib/struts-el.jar of the

Re: Struts and vs

2003-10-29 Thread Kris Schneider
Or try Struts-EL ($STRUTS_HOME/contrib/struts-el/lib/struts-el.jar): <%@ taglib prefix="bean-el" uri="http://jakarta.apache.org/struts/tags-bean-el"; %> Quoting Joanne L Corless <[EMAIL PROTECTED]>: > Hi > > I am currently building a Struts app which accesses a backend database for > alot o

RE: struts issues for multiple action and taglib

2002-11-13 Thread Karr, David
First of all, you're better off asking questions about Struts on the "struts-user" list. Your first issue: You've mostly answered your own question. The automatic handling of form beans, both in and out of pages, is a very powerful tool. Your second issue: There are several ways to handle th

RE: Struts HTML taglib question

2002-10-30 Thread Karr, David
I would rephrase your question to be more specific, and I would ask it on the "struts-user" list. A short response would be to say that the Struts HTML taglib can present elements whose values are automatically initialized from form bean properties, and which create request parameters which are re

RE: Struts

2002-07-17 Thread Martin Cooper
The best place to start is the Struts web site: http://jakarta.apache.org/struts/ In the Resources section, you'll find links to many articles on Struts, and also on MVC in general. Regarding tag libraries, the Struts taglibs do have some overlap with JSTL. In particular, the Struts 'bean' and

Re: Struts

2002-07-17 Thread peter lin
There are some over-lap in Struts and JSTL, but it is possible to use both. Struts borrows ideas from Swing's MVC framework such as actions. JSTL has the advantage of expression language to resolve variables. peter lin Tim Ringwood wrote: > > I am newbie to JSP, XSL, custom tags and JSTL. B

Re: Struts Vs Taglibs

2002-03-18 Thread Martin Cooper
Struts contains several different tag libraries. Some, like the 'logic' taglib, will most likely be deprecated at some point, in favour of JSTL. Others, such as the 'html' taglib, integrate more tightly with the Struts framework, reducing the amount of work you have to do to hook your JSP pages up

Re: Struts Vs Taglibs

2002-03-18 Thread Shawn Bayern
On Mon, 18 Mar 2002, Chen, Gin wrote: > Just a curiousity question. What is the advantages of using one over > the other? For example, alot of the tags seem to be doing the same > type of tasks. (ex. Foreach versus Iterate). Why would one pick one > approach over another? -Tim My impression is t

Re: struts-tags - long form problem

2001-10-10 Thread martin . cooper
Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 10, 2001 2:41 PM > To: [EMAIL PROTECTED] > Subject: Re: struts-tags - long form problem > > > Perhaps you're using, and looking at, the wrong version of the tag? If you >

RE: struts-tags - long form problem

2001-10-10 Thread Tahir Awan
10, 2001 2:41 PM To: [EMAIL PROTECTED] Subject: Re: struts-tags - long form problem Perhaps you're using, and looking at, the wrong version of the tag? If you are using the struts-form taglib, you should be aware that that is obsolete. You should be using the struts-html taglib instead. The s

Re: struts-tags - long form problem

2001-10-10 Thread martin . cooper
-- Martin Cooper - Original Message - From: "Tahir Awan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 09, 2001 12:56 PM Subject: RE: struts-tags - long form problem > > I tried to break my long-form like below. > > >

RE: struts-tags - long form problem

2001-10-09 Thread Tahir Awan
aning appropriate line in FormTag.java). Thanks, Tahir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, October 06, 2001 4:35 PM To: [EMAIL PROTECTED] Subject: Re: struts-tags - long form problem - Original Message - From: "Tahir Awa

Re: struts-tags - long form problem

2001-10-06 Thread martin . cooper
- Original Message - From: "Tahir Awan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, October 06, 2001 3:56 AM Subject: RE: struts-tags - long form problem > Thanks a lot for this valuable info. Actually I have a version retrieved in > last Dec

RE: struts-tags - long form problem

2001-10-06 Thread Gopal, Venu
Hello, Does any body has got a sample tag using the javabeans to display the values to the user. Thanks for help venu -Original Message- From: Tahir Awan [mailto:[EMAIL PROTECTED]] Sent: Saturday, October 06, 2001 5:57 AM To: '[EMAIL PROTECTED]' Subject: RE: struts-tags -

RE: struts-tags - long form problem

2001-10-06 Thread Gopal, Venu
Hello, Does any body has got a sample tag using the javabeans to display the values to the user. Thanks for help venu -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, October 05, 2001 10:34 PM To: [EMAIL PROTECTED] Subject: Re: struts-tags - long form

RE: struts-tags - long form problem

2001-10-06 Thread Gopal, Venu
Hello, Does any body has got a sample tag using the javabeans to display the values to the user. Thanks for help venu -Original Message- From: Tahir Awan [mailto:[EMAIL PROTECTED]] Sent: Saturday, October 06, 2001 5:57 AM To: '[EMAIL PROTECTED]' Subject: RE: struts-tags -

RE: struts-tags - long form problem

2001-10-06 Thread Tahir Awan
Tahir -Original Message- From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: 10/5/01 11:34 PM Subject: Re: struts-tags - long form problem Actually, it is possible, and it is the only solution I am aware of. I know, because I rely on this heavily to solve exactly the problem you are having. :-}

Re: struts-tags - long form problem

2001-10-05 Thread martin . cooper
. -- Martin Cooper - Original Message - From: "Tahir Awan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 05, 2001 2:46 PM Subject: RE: struts-tags - long form problem > That's not possible because all of the tags have to be nested inside > str

RE: struts-tags - long form problem

2001-10-05 Thread Tahir Awan
That's not possible because all of the tags have to be nested inside struts:form tag (otherwise they wont render). Tahir -Original Message- From: Lavandowska To: [EMAIL PROTECTED] Sent: 10/5/01 5:01 PM Subject: Re: struts-tags - long form problem --- Tahir Awan <[EMAIL P

Re: struts-tags - long form problem

2001-10-05 Thread Lavandowska
--- Tahir Awan <[EMAIL PROTECTED]> wrote: > I can't break the page because all the tags have to be nested in the > > tag. Is there any workaround? I'm not saying this is a "good" solution, but you could break it up by putting parts into other .jspf (fragment) files and using to execute them.