Sharing struts taglibs in Tomcat

2003-12-15 Thread Ed Dowgiallo
I am doing a lot of struts development and would like to place the struts jar files in the $TOMCAT_HOME/shared/lib directory instead of WEB-INF/lib for each individual war file. What values for taglib in web.xml are likely to make this work? Is there another way to accomplish the same

RE: Sharing struts taglibs in Tomcat

2003-12-15 Thread Wendy Smoak
From: Ed Dowgiallo [mailto:[EMAIL PROTECTED] I am doing a lot of struts development and would like to place the struts jar files in the $TOMCAT_HOME/shared/lib directory instead of WEB-INF/lib for each individual war file. Don't do that. Really... Disk space is cheap, and deployment is SO

Re: Sharing struts taglibs in Tomcat

2003-12-15 Thread Ed Dowgiallo
- From: Wendy Smoak [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, December 15, 2003 10:58 AM Subject: RE: Sharing struts taglibs in Tomcat From: Ed Dowgiallo [mailto:[EMAIL PROTECTED] I am doing a lot of struts development and would like to place

Re: Sharing struts taglibs in Tomcat

2003-12-15 Thread Craig R. McClanahan
Quoting Ed Dowgiallo [EMAIL PROTECTED]: I am doing a lot of struts development and would like to place the struts jar files in the $TOMCAT_HOME/shared/lib directory instead of WEB-INF/lib for each individual war file. What values for taglib in web.xml are likely to make this work? Is there

RE: Sharing struts taglibs in Tomcat

2003-12-15 Thread Wendy Smoak
I am redeploying my application for testing by removing the old instance and then deploying again via Tomcat 4.1.29 manager webapp. On Windows, Tomcat apparently leaves the struts.jar file open, blocking deletion of the WEB-INF/lib directory and subsequent automatic deployment of my changed

onclick events usage in struts taglibs

2003-12-02 Thread Adam Hardy
I'm testing my app for accessibility issues and because of the following HTML in my struts app pages: input type=submit name=org.apache.struts.taglib.html.CANCEL value=Cancel onclick=bCancel=true; / my website is failing the Bobby test at http://bobby.watchfire.com/bobby/html/en/index.jsp

STRUTS TAGLIBS USAGE question

2003-10-22 Thread Todor Sergueev Petkov
I have the following in a jsp search page: html:textarea property=field(SourceArea) rows=0 cols=0 styleClass=searchTextArea/ field is an ActionForm and is a map. In this example SourceArea is hard coded as string. Is it possible to retrive this hard coded string from properties file? I tried

AW: STRUTS TAGLIBS USAGE question

2003-10-22 Thread Otto, Frank
[mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 22. Oktober 2003 11:39 An: Struts Users Mailing List Betreff: STRUTS TAGLIBS USAGE question I have the following in a jsp search page: html:textarea property=field(SourceArea) rows=0 cols=0 styleClass=searchTextArea/ field is an ActionForm

Re: AW: STRUTS TAGLIBS USAGE question - SOLVED

2003-10-22 Thread Todor Sergueev Petkov
- Von: Todor Sergueev Petkov [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 22. Oktober 2003 11:39 An: Struts Users Mailing List Betreff: STRUTS TAGLIBS USAGE question I have the following in a jsp search page: html:textarea property=field(SourceArea) rows=0 cols=0 styleClass=searchTextArea

RE: JSTL ot struts taglibs?

2003-08-14 Thread Edgar Dollin
: JSTL ot struts taglibs? If they aren't faster in performance then something is wrong. All the JSP rendering practically has to do is put the code as is into the Servlet which is a Java class. No interpretation. I haven't looked at the source but I am sure the optimization

RE: JSTL ot struts taglibs?

2003-08-14 Thread Bailey, Shane C.
To: 'Struts Users Mailing List' Subject: RE: JSTL ot struts taglibs? Maybe you could post this to the ECS users group. Scriptlets are fine, but tend to lend themselves to having lots of lines of code in a page that doesn't actually generate html, which is tough to read if you are trying to lay

[OT] RE: JSTL ot struts taglibs?

2003-08-14 Thread Brown, Melonie S. - Contractor
struts taglibs? Date: Fri, 8 Aug 2003 13:47:02 -0400 From: Bailey, Shane C. [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] Newsgroups: gmane.comp.jakarta.struts.user [snip] In theory it seems like there should be no logic in the View since 1. who sees what and when could

RE: JSTL ot struts taglibs?

2003-08-14 Thread Bailey, Shane C.
List' Subject: RE: JSTL ot struts taglibs? -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 3:45 PM To: Struts Users Mailing List Subject: Re: JSTL ot struts taglibs? Bailey, Shane C. wrote: [Snip] Why should build files be composed of tags

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-14 Thread Edgar Dollin
You are not alone is questioning the solutions to the view problem. This is an interesting problem and will really challenge the open source community to solve it. Right now, everyone has an opinion, no one has a real solution, each individual users needs are limited (they tend to solve their

RE: JSTL ot struts taglibs?

2003-08-14 Thread Bailey, Shane C.
. :) -Original Message- From: Reinhard [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 12:04 PM To: Struts Users Mailing List Subject: Re: JSTL ot struts taglibs? So many things are a step backwards like config files for instance. J2EE is supposed to be for the Enterprise which means

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-14 Thread Mark Galbreath
] Sent: Friday, August 08, 2003 12:24 PM To: 'Struts Users Mailing List' Subject: RE: [OT] RE: JSTL ot struts taglibs? Just like you never said JSF will replace JSTL I never said I was going to eat a bunny. ;) -Tim -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent

Re: JSTL ot struts taglibs?

2003-08-14 Thread Adam Hardy
like Java Server Faces). David Thielen wrote: Hi; For the logic and I18N taglibs - what do you recommend - using the struts taglibs or the JSTL taglibs? thanks - dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: JSTL ot struts taglibs?

2003-08-14 Thread Stephen Brown
Hmm, yeah. I wouldn't hold your breath on that. I mean the JSTL people did feel the need to include database tags, even though no one really thinks that's a good idea (if you do, I'm really not interested). Anyways, it's happy hour, go have a beer (unless you're not in NYC, but I'm not sure if

RE: JSTL ot struts taglibs?

2003-08-14 Thread Stephen Brown
: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent: August 8, 2003 11:43 AM To: 'Struts Users Mailing List' Subject: RE: JSTL ot struts taglibs? You're right, ant does have $var in it I use my IDE to build and forgot. I just think that is a step backwards doing tags that way. So many

[OT] RE: JSTL ot struts taglibs?

2003-08-14 Thread Chen, Gin
ot struts taglibs? Another debate. Your debate was to make me feel like I was doing something wrong by posting my opinion. There was no debate. The tags do speak for themselves and if you think that $var which Java allows but is NEVER used is acceptable syntax for a tag then that speaks

RE: JSTL ot struts taglibs?

2003-08-14 Thread Bailey, Shane C.
-Original Message- From: Erik Price [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 3:45 PM To: Struts Users Mailing List Subject: Re: JSTL ot struts taglibs? Bailey, Shane C. wrote: [Snip] Why should build files be composed of tags at all? I think Ant is great too (a lot

RE: JSTL ot struts taglibs?

2003-08-14 Thread Bailey, Shane C.
To: 'Struts Users Mailing List' Subject: RE: JSTL ot struts taglibs? Scriptlets are more powerful (you can do ANYTHING Java can do), faster, is a standard (it is the Java language you know) and if you are going to spend time learning a new language (${var} == pooPoo) then you would be better off learning

Re: [OT] RE: JSTL ot struts taglibs?

2003-08-14 Thread Reinhard
Part of the problem is that there are so many ways (none of which are particularly good compared to .NET) to paint pages in Java land. JSF is vapor and has a limited window of opportunity and requires REAL industry support to succeed before the world moves past it. .NET view technology

RE: JSTL ot struts taglibs?

2003-08-14 Thread Bailey, Shane C.
that is the solution. -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 4:20 PM To: 'Struts Users Mailing List' Subject: RE: JSTL ot struts taglibs? But, what I really meant about JSTL being replaced was in popularity. JSP tags are being

Re: JSTL ot struts taglibs?

2003-08-14 Thread Yann Cébron
For the logic and I18N taglibs - what do you recommend - using the struts taglibs or the JSTL taglibs? Definitely JSTL. They're more powerful, easier to use, potentially faster, and a Java standard. not to forget: there's a good chance that (in the future) containers will have their own

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-14 Thread Bailey, Shane C.
:) -Original Message- From: Chen, Gin [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 12:07 PM To: 'Struts Users Mailing List' Subject: [OT] RE: JSTL ot struts taglibs? Everyone take a deep breath and think of bunny rabbits. Cute little bunnies ()() ('.') ()() Hmm.. I'm getting

Re: JSTL ot struts taglibs?

2003-08-11 Thread Erik Price
Bailey, Shane C. wrote: I'm trying state my opinion and learn (from replies). About the only thing in that statement that I know is verifiably screwed up is that Ant has no $var and I apologized and rectified what I meant in one of my recent posts. Whachu talkin' 'bout Willis? I hadn't read

RE: JSTL ot struts taglibs?

2003-08-10 Thread David Graham
If they aren't faster in performance then something is wrong. All the JSP rendering practically has to do is put the code as is into the Servlet which is a Java class. No interpretation. I haven't looked at the source but I am sure the optimization for rendering code for Scriptlets vs

RE: JSTL ot struts taglibs?

2003-08-10 Thread Bailey, Shane C.
: Friday, August 08, 2003 4:32 PM To: Struts Users Mailing List Subject: RE: JSTL ot struts taglibs? If they aren't faster in performance then something is wrong. All the JSP rendering practically has to do is put the code as is into the Servlet which is a Java class. No interpretation. I haven't

RE: JSTL ot struts taglibs?

2003-08-10 Thread Bailey, Shane C.
step backwards tags. -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 11:51 AM To: Struts Users Mailing List Subject: RE: JSTL ot struts taglibs? --- Bailey, Shane C. [EMAIL PROTECTED] wrote: Don't get me wrong, I think scriptlets are ugly

RE: JSTL ot struts taglibs?

2003-08-10 Thread David Graham
:21 AM To: 'Struts Users Mailing List' Subject: RE: JSTL ot struts taglibs? Scriptlets are more powerful (you can do ANYTHING Java can do), faster, is a standard (it is the Java language you know) and if you are going to spend time learning a new language (${var} == pooPoo) then you would

RE: JSTL ot struts taglibs?

2003-08-10 Thread Bailey, Shane C.
Mailing List Subject: Re: JSTL ot struts taglibs? --- David Thielen [EMAIL PROTECTED] wrote: Hi; For the logic and I18N taglibs - what do you recommend - using the struts taglibs or the JSTL taglibs? Definitely JSTL. They're more powerful, easier to use, potentially faster, and a Java

RE: JSTL ot struts taglibs?

2003-08-10 Thread Bailey, Shane C.
and rectified what I meant in one of my recent posts. Whachu talkin' 'bout Willis? -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 2:53 PM To: Struts Users Mailing List Subject: Re: JSTL ot struts taglibs? Bailey, Shane C. wrote: Scriptlets

RE: JSTL ot struts taglibs?

2003-08-09 Thread Stephen Brown
' Subject: RE: JSTL ot struts taglibs? Scriptlets are more powerful (you can do ANYTHING Java can do), faster, is a standard (it is the Java language you know) and if you are going to spend time learning a new language (${var} == pooPoo) then you would be better off learning Java (assuming

Re: JSTL ot struts taglibs?

2003-08-09 Thread Reinhard
So many things are a step backwards like config files for instance. J2EE is supposed to be for the Enterprise which means there is at least a DB and maybe the LDAP at your disposal yet people go back to storing stuff in files. I don't agree. You have to think about the time after the rollout

Re: JSTL ot struts taglibs?

2003-08-09 Thread David Graham
--- David Thielen [EMAIL PROTECTED] wrote: Hi; For the logic and I18N taglibs - what do you recommend - using the struts taglibs or the JSTL taglibs? Definitely JSTL. They're more powerful, easier to use, potentially faster, and a Java standard. David thanks - dave

Re: JSTL ot struts taglibs?

2003-08-08 Thread David Graham
--- Yann Cébron [EMAIL PROTECTED] wrote: For the logic and I18N taglibs - what do you recommend - using the struts taglibs or the JSTL taglibs? Definitely JSTL. They're more powerful, easier to use, potentially faster, and a Java standard. not to forget: there's a good chance

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-08 Thread Bailey, Shane C.
You got me there. lol -Original Message- From: Chen, Gin [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 12:24 PM To: 'Struts Users Mailing List' Subject: RE: [OT] RE: JSTL ot struts taglibs? Just like you never said JSF will replace JSTL I never said I was going to eat

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-08 Thread Chappell, Simon P
BTW, how could you eat those poor defenseless bunnies They're very nice in a pie. Bunny stew is also pretty good. ;-) Simon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JSTL ot struts taglibs?

2003-08-08 Thread Erik Price
Bailey, Shane C. wrote: Scriptlets are more powerful (you can do ANYTHING Java can do), faster, is a standard (it is the Java language you know) and if you are going to spend time learning a new language (${var} == pooPoo) then you would be better off learning Java (assuming you don't already

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-08 Thread Yansheng Lin
lilly hungie. -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: August 8, 2003 10:22 AM To: Struts Users Mailing List Subject: RE: [OT] RE: JSTL ot struts taglibs? BTW, how could you eat those poor defenseless bunnies They're very nice in a pie. Bunny stew

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-08 Thread Bailey, Shane C.
if you can get rid of that in the JSPs with an already written or future framework? -Original Message- From: Brown, Melonie S. - Contractor [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 2:26 PM To: '[EMAIL PROTECTED]' Subject: [OT] RE: JSTL ot struts taglibs? I agree

RE: JSTL ot struts taglibs?

2003-08-08 Thread Bailey, Shane C.
As long as they keep this part of the tag libraries: http://www.javaworld.com/javaworld/jw-02-2003/jw-0228-jstl-p5.html JSTL will be an asset to all MVC architectures out there!!! :-( - To unsubscribe, e-mail: [EMAIL

JSTL ot struts taglibs?

2003-08-08 Thread David Thielen
Hi; For the logic and I18N taglibs - what do you recommend - using the struts taglibs or the JSTL taglibs? thanks - dave

[OT] RE: JSTL ot struts taglibs?

2003-08-08 Thread Bailey, Shane C.
Mailing List' Subject: RE: JSTL ot struts taglibs? The nice thing about those $var style tags is that they are very easy to read, if you use nice names for things, most people can understand the relationships and get something out of them. Also these translate well to my email templates which

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-08 Thread Chen, Gin
Just like you never said JSF will replace JSTL I never said I was going to eat a bunny. ;) -Tim -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 12:05 PM To: 'Struts Users Mailing List' Subject: RE: [OT] RE: JSTL ot struts taglibs

Re: JSTL ot struts taglibs?

2003-08-08 Thread Reinhard
I like it how some people don't get disturbed by questions about connecting to a database with JDBC to the Struts user list but get mad if you post a differing opinion about the crappy way some tags were written that interfaces with Struts code. What an ACE! [vote]: +1000

extending Struts taglibs to indicate form field states

2003-07-31 Thread Witbeck, Shane
Im considering extending the Struts taglibs (specfically the form object tags). What Im thinking about doing is adding a formStateObject to my ActionForm beans and having it dictate the state of specifc elements of a form. For example, if a particular field should be disabled, then I would add

Re: extending Struts taglibs to indicate form field states

2003-07-31 Thread Yann Cébron
Im considering extending the Struts taglibs (specfically the form object tags). What Im thinking about doing is adding a formStateObject to my ActionForm beans and having it dictate the state of specifc elements of a form. For example, if a particular field should be disabled, then I would

RE: extending Struts taglibs to indicate form field states

2003-07-31 Thread Mike Jasnowski
for required, or error conditions, etc.. -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Yann Cébron Sent: Thursday, July 31, 2003 1:33 PM To: [EMAIL PROTECTED] Subject: Re: extending Struts taglibs to indicate form field states Im considering extending the Struts

RE: extending Struts taglibs to indicate form field states

2003-07-31 Thread Mike Jasnowski
Mailing List Subject: RE: extending Struts taglibs to indicate form field states We use a mechanism that basically wraps a set of Struts Form/Form Fields in a tag that applies a set of XSLT templates to the body of the tag. This enables use to add features like you describe w/o touching

Re: extending Struts taglibs to indicate form field states

2003-07-31 Thread Rob Leland
Mike Jasnowski wrote: We use a mechanism that basically wraps a set of Struts Form/Form Fields in a tag that applies a set of XSLT templates to the body of the tag. This enables use to add features like you describe w/o touching the Struts tags themselves. We use it for custom error

RE: extending Struts taglibs to indicate form field states

2003-07-31 Thread Steve Caswell
Any chance of you posting an example? This sounds like a solution to a requirement I have. -Original Message- From: Rob Leland [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 2:37 PM To: Struts Users Mailing List Subject: Re: extending Struts taglibs to indicate form field states

Struts taglibs on iPlanet 4.1SP12

2003-06-25 Thread Kevin Robair
Hi all, I am faced with the enjoyable task of deploying a struts1.1RC2 app to iPlanet 4.1SP12. My current problem is that the jasper compiler cannot file the TLD's for the struts tags libraries. I have placed WEB-INF in docroot, in the file system root, and in my application's subdir, all to

Re: Problem with struts, taglibs and i18n

2003-02-10 Thread Tom Ziemer
] Subject: Problem with struts, taglibs and i18n Hello, I've got a little problem: I am working on an application that uses struts, castor, taglibs, etc. and I've written a custom tag that will create the page-design for me: ... [Part of my tld] tag namemyDesign/name tagclasstag.DesignTag

Struts taglibs - Is data grid possible

2003-01-16 Thread Harinath DP
Hi, I need to implement Data grid using Struts. Can anybody guide me to how about doing this? Do we have any taglib, which can do this? -Hari

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Mark Galbreath
What do you mean by data grid? Are you talking about some kind of matrix in an HTML table or AWT/Swing grid? Mark -Original Message- From: Harinath DP [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 7:02 AM To: Struts-User Subject: Struts taglibs - Is data grid possible

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Harinath DP
in ActionForm for further processing by my business tier Hari -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 5:38 PM To: 'Struts Users Mailing List' Subject: RE: Struts taglibs - Is data grid possible What do you mean by data grid? Are you

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Mark Galbreath
I haven't done this stuff since Java 1.1 and AWT GridBagLayout, but it looks like you may want to check out Chapter 10 of John Zukowski's Definitive Guide to Swing for Java 2 (Apress 1999). Mark -Original Message- From: Harinath DP [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16,

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
16, 2003 6:02 AM To: Struts-User Subject: Struts taglibs - Is data grid possible Hi, I need to implement Data grid using Struts. Can anybody guide me to how about doing this? Do we have any taglib, which can do this? -Hari -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

Re: Struts taglibs - Is data grid possible

2003-01-16 Thread James Mitchell
- Original Message - From: Haseltine, Celeste [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 10:40 AM Subject: RE: Struts taglibs - Is data grid possible You must be coming from a VB background, as a DataGrid and a MSFlexGrid are both

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Mark Galbreath
I come from a VB/ASP b -Original Message- From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 10:41 AM To: 'Struts Users Mailing List' Subject: RE: Struts taglibs - Is data grid possible You must be coming from a VB background, as a DataGrid

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Mark Galbreath
I come from a VB/ASP background and COM has no similarity to an applet. COM is server-side technology and applets are client-side technology. The closest similarity between Java and M$ would be JSP = ASP/VB Script. Also, it is easy to auto-download the correct JVM to IE if an appropriate JVM is

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread pqin
' Subject: RE: Struts taglibs - Is data grid possible I come from a VB/ASP background and COM has no similarity to an applet. COM is server-side technology and applets are client-side technology. The closest similarity between Java and M$ would be JSP = ASP/VB Script. Also, it is easy to auto-download

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Aileen Cardenas
-Original Message- From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 7:41 AM To: 'Struts Users Mailing List' Subject: RE: Struts taglibs - Is data grid possible You must be coming from a VB background, as a DataGrid and a MSFlexGrid are both MS COM

Re: Struts taglibs - Is data grid possible

2003-01-16 Thread Vincent Stoessel
info on DBForms at http://jdbforms.sourceforge.net/. Celeste -Original Message- From: Harinath DP [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 6:02 AM To: Struts-User Subject: Struts taglibs - Is data grid possible Hi, I need to implement Data grid using Struts. Can

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 10:06 AM To: Struts Users Mailing List Subject: Re: Struts taglibs - Is data grid possible The equivalent of a COM component in Java is an applet. Where did you get that idea? The Java version of a COM component is like

Re: Struts taglibs - Is data grid possible

2003-01-16 Thread James Mitchell
: Haseltine, Celeste [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 11:53 AM Subject: RE: Struts taglibs - Is data grid possible James, There are two type of COM components in the MS library, those with a visual interface, and those without

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
on that. Celeste -Original Message- From: Vincent Stoessel [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 10:55 AM To: Struts Users Mailing List Subject: Re: Struts taglibs - Is data grid possible -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Wow, I learn something new every day

Re: Struts taglibs - Is data grid possible

2003-01-16 Thread Robert Leland
From: Harinath DP [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 6:02 AM To: Struts-User Subject: Struts taglibs - Is data grid possible Hi, I need to implement Data grid using Struts. Can anybody guide me to how about doing this? Do we have any taglib, which can do

Database generated Reports with Struts Taglibs

2003-01-08 Thread Sterin, Ilya
Hi, I'd like an opinion on generating database reports with struts, though using an Action class or a custom bean to generate it, then be forwarded to the presentation layer. I didn't see any examples in the Struts in Action book, so I was wondering on the best practice. Also, my problem is,

Re: Database generated Reports with Struts Taglibs

2003-01-08 Thread Dan Tran
:22 AM Subject: Database generated Reports with Struts Taglibs Hi, I'd like an opinion on generating database reports with struts, though using an Action class or a custom bean to generate it, then be forwarded to the presentation layer. I didn't see any examples in the Struts in Action book

Re: Database generated Reports with Struts Taglibs

2003-01-08 Thread V. Cekvenich
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 8:22 AM Subject: Database generated Reports with Struts Taglibs Hi, I'd like an opinion on generating database reports with struts, though using an Action class or a custom bean to generate it, then be forwarded

RE: Struts Taglibs

2002-12-09 Thread Karr, David
First of all, questions like this are better asked on the struts-user list. This list is for issues related to the internal development of the Struts framework, not how to use it. I would guess you would be looking for the Validator framework, which is a standard part of Struts (and has

Re: Struts taglibs without Struts

2002-10-18 Thread Umberto Nicoletti
On Wed, 2002-10-16 at 17:02, [EMAIL PROTECTED] wrote: Hi Can the Struts taglibs, e.g. struts-html, be used on their own i.e. just included in a page without using the Struts framework? In other words can it be used in a standalone way like, say, JSTL? I have successfully used the nested

Struts taglibs without Struts

2002-10-16 Thread Praful . Kapadia
Hi Can the Struts taglibs, e.g. struts-html, be used on their own i.e. just included in a page without using the Struts framework? In other words can it be used in a standalone way like, say, JSTL? TIA Praful Visit our website at http://www.ubswarburg.com This message contains

RE: Struts taglibs without Struts

2002-10-16 Thread James Mitchell
: Struts taglibs without Struts Hi Can the Struts taglibs, e.g. struts-html, be used on their own i.e. just included in a page without using the Struts framework? In other words can it be used in a standalone way like, say, JSTL? TIA Praful Visit our website at http://www.ubswarburg.com

RE: Struts taglibs without Struts

2002-10-16 Thread Praful . Kapadia
Mitchell [mailto:[EMAIL PROTECTED]] Sent: 16 October 2002 17:02 To: Struts Users Mailing List Subject: RE: Struts taglibs without Struts What happened when you tried it? You did try itright? James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org -Original Message

RE: Struts taglibs without Struts

2002-10-16 Thread James Mitchell
: Wednesday, October 16, 2002 12:14 PM To: [EMAIL PROTECTED] Subject: RE: Struts taglibs without Struts The problem with trying is that whilst you can prove that some tags work, it is much harder to prove that all tags in all taglibs will work. For that you need knowledge of the architecture

RE: Struts taglibs without Struts

2002-10-16 Thread Joe Germuska
At 12:02 PM -0400 2002/10/16, James Mitchell wrote: What happened when you tried it? You did try itright? I've ported the struts taglibs to another project; you have to go through and weed out some pervasive references to Struts classes, but it's doable. It's particuarly easy

RE: Struts taglibs without Struts

2002-10-16 Thread Praful . Kapadia
PROTECTED]] Sent: 16 October 2002 17:19 To: Struts Users Mailing List Subject: RE: Struts taglibs without Struts Well, I'm happy you got your answer. I hate giving out fish, I'd much rather hand out a pole and instruction manual. Good Luck! James Mitchell Software Engineer/Struts Evangelist http

RE: Struts taglibs without Struts

2002-10-16 Thread Praful . Kapadia
I've ported the struts taglibs to another project; you have to go Thanks Joe. It's good to know someone else has done it. Praful -Original Message- From: Joe Germuska [mailto:[EMAIL PROTECTED]] Sent: 16 October 2002 17:12 To: Struts Users Mailing List Subject: RE: Struts taglibs

Re: Struts taglibs without Struts

2002-10-16 Thread Rob Leland
[EMAIL PROTECTED] wrote: The problem with trying is that whilst you can prove that some tags work, it is much harder to prove that all tags in all taglibs will work. For that you need knowledge of the architecture. Someone who had this knowledge sent me the answer. Originally, the answer

Re: Error while using struts taglibs

2002-07-24 Thread Sridhara S.N.
Mailing List [EMAIL PROTECTED] Sent: Saturday, July 20, 2002 6:28 AM Subject: Error while using struts taglibs Hi All, I am using struts with weblogic5.1. I am getting a problem in a page which was functioning fine earlier. It has to do with initializing the taglibraries. This is given

Using Struts Taglibs?

2002-07-16 Thread @Basebeans.com
Subject: Using Struts Taglibs? From: Xero [EMAIL PROTECTED] === Is there a lot of overhead in using Struts Taglibs? What would be in using it versus traditional code. example using the Struts HTMLTagLibs vs plain HTML? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

RE: Using Struts Taglibs?

2002-07-16 Thread Andrew Hill
Among other things the struts taglibs know how to pull values from your actionForm and your actionErrors (and other beans) so that you can display these easily. You can do the same with scriptlets embedded among the html parts of your jsp but of course its usually more work and a lot harder

JSP + struts taglibs

2002-05-28 Thread Harinath
Can a JSP access data in a action form without using struts taglibs. Regards, Hari -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: JSP + struts taglibs

2002-05-28 Thread James Mitchell
Yes, The form bean is in the scope that you have set (struts-config or from your action), use it as you would without any taglibs. Although, your code will by much cleaner if you stick to the struts taglibs. James Mitchell -Original Message- From: Harinath [mailto:[EMAIL PROTECTED

RE: JSP + struts taglibs

2002-05-28 Thread Harinath
James, I have got somewhere around 40 tags in my screen. Was thinking if it might cause performance problems. Though the actions are faster and data is ready in the action class, it taks a while to push data to the browser. Is there any other option to optimise it, retaining struts taglibs

RE: JSP + struts taglibs

2002-05-28 Thread James Mitchell
. validation, field population, and more) Anyway, hope that helps. James Mitchell -Original Message- From: Harinath [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 28, 2002 9:16 AM To: Struts Users Mailing List Subject: RE: JSP + struts taglibs James, I have got somewhere around

Extending Struts TagLibs

2001-10-18 Thread Bill Mariani
My first question is: Has anyone had any luck extending any of the tag libs provided with struts (html, bean..) Second, if so could some one post some example code. Thanks, Billy ___ http://inbox.excite.com

RE: Help me defend Struts taglibs!!!

2001-05-31 Thread Amos Shapira
think? Cheers, --Amos Shapira WebCollage -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 6:18 AM To: '[EMAIL PROTECTED]' Subject: RE: Help me defend Struts taglibs!!! On Thu, 26 Apr 2001, Scott Cressler wrote: One thing this argument

RE: Help me defend Struts taglibs!!!

2001-05-30 Thread Niall Pemberton
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 31 May 2001 04:18 To: '[EMAIL PROTECTED]' Subject: RE: Help me defend Struts taglibs!!! On Thu, 26 Apr 2001, Scott Cressler wrote: One thing this argument might come down to is why custom tags

RE: Help me defend Struts taglibs!!! (XML/XSL GUI tool)

2001-04-27 Thread Calvin Yu
defend Struts taglibs!!! * unified API * consistent behavior, performance * growing industry support * single-point of functionality management scriptlets tend to be ad-hoc, slap-together and not consistent across all JSPs. performance-wise, i'm unsure. i'm don't have

Help me defend Struts taglibs!!!

2001-04-26 Thread Firmin David
Hi all, Members of my team are gradually turning against using the Struts taglibs and resorting to scriptlets. IMHO: scriptlets bad, tags good. I've had more experience in using them than the others, but I'm finding it difficult to fight my corner in the face of ever increasing skepticism. Could

AW: Help me defend Struts taglibs!!!

2001-04-26 Thread D. Veniseleas
PROTECTED]' Betreff: Help me defend Struts taglibs!!! Hi all, Members of my team are gradually turning against using the Struts taglibs and resorting to scriptlets. IMHO: scriptlets bad, tags good. I've had more experience in using them than the others, but I'm finding it difficult

Re: Help me defend Struts taglibs!!!

2001-04-26 Thread Chris Butler
wrote: Hi all, Members of my team are gradually turning against using the Struts taglibs and resorting to scriptlets. IMHO: scriptlets bad, tags good. I've had more experience in using them than the others, but I'm finding it difficult to fight my corner in the face of ever increasing skepticism

RE: Help me defend Struts taglibs!!!

2001-04-26 Thread Nanduri, Amarnath
sure that you will comeup with a few juicy points on your own. Hope this helps. cheers, Amar.. -Original Message- From: D. Veniseleas [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 5:18 AM To: '[EMAIL PROTECTED]' Subject: AW: Help me defend Struts taglibs!!! Poor David

Re: Help me defend Struts taglibs!!!

2001-04-26 Thread Calvin Yu
What are their arguments for using scriplets? Calvin --- Firmin David [EMAIL PROTECTED] wrote: Hi all, Members of my team are gradually turning against using the Struts taglibs and resorting to scriptlets. IMHO: scriptlets bad, tags good. I've had more experience in using them than

Re: Help me defend Struts taglibs!!!

2001-04-26 Thread Clarance_Howatt
Howatt/Net) Subject: Re: Help me defend Struts taglibs

  1   2   >