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 


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]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Harinath DP
Hi Mark,
I am trying to implement something like AWT/Swing grid (similar to DBGrid in
Visual Basic) where in number of rows can be increased by click of button or
when the rows are exhausted.

I need to present user with few rows (initially)  for him to do data entry
which can be captured 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 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


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]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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, 2003 7:18 AM


Hi Mark,
I am trying to implement something like AWT/Swing grid (similar to DBGrid in
Visual Basic) where in number of rows can be increased by click of button or
when the rows are exhausted.

I need to present user with few rows (initially)  for him to do data entry
which can be captured in ActionForm for further processing by my business
tier

Hari



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
You must be coming from a VB background, as a DataGrid and a MSFlexGrid are
both MS COM components.

The equivalent of a COM component in Java is an applet.  But I caution you
on using applets in a web/browser based application UNLESS you are writing
an application for intranet (read: internal company) use.  For internet use,
where the general public will be using your web site, many of your IE users
will have problems running an applet, and will most likely give up on using
your site, rather than trying to figure out whether they have the right
version of the JRE installed on their machine, along with IE, to run your
applet.

You might want to check into using DBForms tag library instead of writing an
applet.  You can get more 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 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]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Struts taglibs - Is data grid possible

2003-01-16 Thread James Mitchell
 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 using a JavaBean in a jsp page
(jsp:useBean).

The M$ version of using an Applet in a web page iswell.using an
Applet in a web page.


--
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 MS COM components.

 The equivalent of a COM component in Java is an applet.  But I caution you
 on using applets in a web/browser based application UNLESS you are writing
 an application for intranet (read: internal company) use.  For internet
use,
 where the general public will be using your web site, many of your IE
users
 will have problems running an applet, and will most likely give up on
using
 your site, rather than trying to figure out whether they have the right
 version of the JRE installed on their machine, along with IE, to run your
 applet.

 You might want to check into using DBForms tag library instead of writing
an
 applet.  You can get more 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 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]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 and a MSFlexGrid are
both MS COM components.

The equivalent of a COM component in Java is an applet.  But I caution you
on using applets in a web/browser based application UNLESS you are writing
an application for intranet (read: internal company) use.  For internet use,
where the general public will be using your web site, many of your IE users
will have problems running an applet, and will most likely give up on using
your site, rather than trying to figure out whether they have the right
version of the JRE installed on their machine, along with IE, to run your
applet.

You might want to check into using DBForms tag library instead of writing an
applet.  You can get more 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 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]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 not found.

Mark

-Original Message-
From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 16, 2003 10:41 AM


You must be coming from a VB background, as a DataGrid and a MSFlexGrid are
both MS COM components.

The equivalent of a COM component in Java is an applet.  But I caution you
on using applets in a web/browser based application UNLESS you are writing
an application for intranet (read: internal company) use.  For internet use,
where the general public will be using your web site, many of your IE users
will have problems running an applet, and will most likely give up on using
your site, rather than trying to figure out whether they have the right
version of the JRE installed on their machine, along with IE, to run your
applet.



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Struts taglibs - Is data grid possible

2003-01-16 Thread pqin
COM is similar to CORBA/RMI but not CORBA, am I right?

Regards,
 
 
PQ
 
This Guy Thinks He Knows Everything
This Guy Thinks He Knows What He Is Doing

-Original Message-
From: Mark Galbreath [mailto:[EMAIL PROTECTED]] 
Sent: January 16, 2003 11:15 AM
To: 'Struts Users Mailing List'
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 the correct JVM to IE if an appropriate
JVM is not found.

Mark

-Original Message-
From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 16, 2003 10:41 AM


You must be coming from a VB background, as a DataGrid and a MSFlexGrid are
both MS COM components.

The equivalent of a COM component in Java is an applet.  But I caution you
on using applets in a web/browser based application UNLESS you are writing
an application for intranet (read: internal company) use.  For internet use,
where the general public will be using your web site, many of your IE users
will have problems running an applet, and will most likely give up on using
your site, rather than trying to figure out whether they have the right
version of the JRE installed on their machine, along with IE, to run your
applet.



--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



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 components.

The equivalent of a COM component in Java is an applet.  But I caution you
on using applets in a web/browser based application UNLESS you are writing
an application for intranet (read: internal company) use.  For internet use,
where the general public will be using your web site, many of your IE users
will have problems running an applet, and will most likely give up on using
your site, rather than trying to figure out whether they have the right
version of the JRE installed on their machine, along with IE, to run your
applet.

You might want to check into using DBForms tag library instead of writing an
applet.  You can get more 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 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]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Struts taglibs - Is data grid possible

2003-01-16 Thread Vincent Stoessel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Wow, I learn something new every day on this mailing list.
Dbforms looks kinda cool. Has anyone used it with struts?

Haseltine, Celeste wrote:


You might want to check into using DBForms tag library instead of writing an
applet.  You can get more 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 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]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


- -- 
Vincent Stoessel
Linux Systems Developer
vincent xaymaca.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQE+JuQE07m/vvdL5r8RAvysAKCJ7tc7emQJGQY6x1K7cl9O9Fz+4wCfXkN3
Mp0BxR7+sW6V04o1TUomO+A=
=aHG6
-END PGP SIGNATURE-


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]



RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
James, 

There are two type of COM components in the MS library, those with a visual
interface, and those without (just plain dll's).  Yes, I do equate a COM
component that contains a visual interface to a Java Applet.  Both run
inside of a container, and both have a visual interface by which you can
pass information to the container/backend.  I don't view a JavaBean as
being the same as a COM component.  For one thing, you can't create an
SWING/GUI visual interface inside of a JavaBean (at least to my knowledge
you can't).

Just my 2 cents worth!

Celeste



-Original Message-
From: 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 using a JavaBean in a jsp page
(jsp:useBean).

The M$ version of using an Applet in a web page iswell.using an
Applet in a web page.


--
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 MS COM components.

 The equivalent of a COM component in Java is an applet.  But I caution you
 on using applets in a web/browser based application UNLESS you are writing
 an application for intranet (read: internal company) use.  For internet
use,
 where the general public will be using your web site, many of your IE
users
 will have problems running an applet, and will most likely give up on
using
 your site, rather than trying to figure out whether they have the right
 version of the JRE installed on their machine, along with IE, to run your
 applet.

 You might want to check into using DBForms tag library instead of writing
an
 applet.  You can get more 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 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]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Struts taglibs - Is data grid possible

2003-01-16 Thread James Mitchell
I was referring to server-side web-based component development (dll).

BTW, you don't create a GUI 'inside' of a JavaBean (and I used the wrong
term, I meant to say class), you code to an API/Framework, so in that sense,
its the same thing.

--
James Mitchell





- Original Message -
From: 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 (just plain dll's).  Yes, I do equate a COM
 component that contains a visual interface to a Java Applet.  Both run
 inside of a container, and both have a visual interface by which you can
 pass information to the container/backend.  I don't view a JavaBean as
 being the same as a COM component.  For one thing, you can't create an
 SWING/GUI visual interface inside of a JavaBean (at least to my knowledge
 you can't).

 Just my 2 cents worth!

 Celeste



 -Original Message-
 From: 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 using a JavaBean in a jsp page
 (jsp:useBean).

 The M$ version of using an Applet in a web page iswell.using an
 Applet in a web page.


 --
 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 MS COM components.
 
  The equivalent of a COM component in Java is an applet.  But I caution
you
  on using applets in a web/browser based application UNLESS you are
writing
  an application for intranet (read: internal company) use.  For internet
 use,
  where the general public will be using your web site, many of your IE
 users
  will have problems running an applet, and will most likely give up on
 using
  your site, rather than trying to figure out whether they have the right
  version of the JRE installed on their machine, along with IE, to run
your
  applet.
 
  You might want to check into using DBForms tag library instead of
writing
 an
  applet.  You can get more 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 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]
  For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
Vincent, 

Yes, I am currently trying it out with Struts 1.02.  If it works out, I will
utilize the DBForms tab library extensively in our new application.  I don't
know DBForms will work with Struts 1.1Beta.

By the way, I believe Struts is incorporated into DBForms, but don't quote
me 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 on this mailing list.
Dbforms looks kinda cool. Has anyone used it with struts?

Haseltine, Celeste wrote:

 You might want to check into using DBForms tag library instead of writing
an
 applet.  You can get more 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 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]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


- -- 
Vincent Stoessel
Linux Systems Developer
vincent xaymaca.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQE+JuQE07m/vvdL5r8RAvysAKCJ7tc7emQJGQY6x1K7cl9O9Fz+4wCfXkN3
Mp0BxR7+sW6V04o1TUomO+A=
=aHG6
-END PGP SIGNATURE-


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 this?


This isn't using using Struts:
Borland has a very sweet Data Aware Grid,
that will let your users perform, edits deletes, validations.
It uses about 30K lines of javascript to perform this.
It is available in the Enterprise version, and it takes about 10
minutes, to automatically generate the web page from scratch,
with live data. That alone is worth the price of the Ent version.
I used it back in late 2000 in JB 4 so I assume it has only gotten better !



-Hari



-Rob


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 pieces that come from other packages).  Read the online user 
guide and associated resources for information on using the Validator framework.

 -Original Message-
 From: Herval Freire [mailto:[EMAIL PROTECTED]]
 
  Hello everyone,
 
  This is my first message on the struts list, so I 
 ask everyone to 
 be kind :)
 
  I've recently being using the Struts framework and 
 the Struts 
 Validator plugin for the first time. Greate boost on 
 productivity, but I 
 missed one thing:
  Is there any taglib/attribute which allows me to generate 
 Javascript masks for textboxes? If no, is it on the scope of 
 Struts project?
 
 
  Thanks!
 
 
 -
 --- Herval Freire de A. Júnior --
 - mailto:[EMAIL PROTECTED] ---
 - http://www.herval.hpg.com.br --
 - UIN: 2067270 --
 -
 --[The adepts are everywhere... awake! v0.666a]--
 -
 
 Erros graves: julgar-se mais do que se é e estimar-se menos 
 do que se 
 merece.
-- Goethe 
 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 tags in a project without Struts
:-(.
It works great!

Only you must take care of things like putting bean in session to make
them visible.

HTH,
Umberto

  
 TIA
 
 Praful
 
 Visit our website at http://www.ubswarburg.com
 
 This message contains confidential information and is intended only 
 for the individual named.  If you are not the named addressee you 
 should not disseminate, distribute or copy this e-mail.  Please 
 notify the sender immediately by e-mail if you have received this 
 e-mail by mistake and delete this e-mail from your system.
 
 E-mail transmission cannot be guaranteed to be secure or error-free 
 as information could be intercepted, corrupted, lost, destroyed, 
 arrive late or incomplete, or contain viruses.  The sender therefore 
 does not accept liability for any errors or omissions in the contents 
 of this message which arise as a result of e-mail transmission.  If 
 verification is required please request a hard-copy version.  This 
 message is provided for informational purposes and should not be 
 construed as a solicitation or offer to buy or sell any securities or 
 related financial instruments.
 
 
 --
 To unsubscribe, e-mail:   mailto:struts-user-unsubscribe;jakarta.apache.org
 For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org
 
-- 
Umberto Nicoletti
[EMAIL PROTECTED] | Tel. +390415701366

We'll try to make different mistakes this time. - Larry Wall


--
To unsubscribe, e-mail:   mailto:struts-user-unsubscribe;jakarta.apache.org
For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org




RE: Struts taglibs without Struts

2002-10-16 Thread James Mitchell

What happened when you tried it?   You did try itright?

James Mitchell
Software Engineer/Struts Evangelist
http://www.open-tools.org




 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 8:03 AM
 To: [EMAIL PROTECTED]
 Subject: 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

 This message contains confidential information and is intended only
 for the individual named.  If you are not the named addressee you
 should not disseminate, distribute or copy this e-mail.  Please
 notify the sender immediately by e-mail if you have received this
 e-mail by mistake and delete this e-mail from your system.

 E-mail transmission cannot be guaranteed to be secure or error-free
 as information could be intercepted, corrupted, lost, destroyed,
 arrive late or incomplete, or contain viruses.  The sender therefore
 does not accept liability for any errors or omissions in the contents
 of this message which arise as a result of e-mail transmission.  If
 verification is required please request a hard-copy version.  This
 message is provided for informational purposes and should not be
 construed as a solicitation or offer to buy or sell any securities or
 related financial instruments.


 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Struts taglibs without Struts

2002-10-16 Thread Praful . Kapadia

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.

Praful
 

-Original Message-
From: James 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-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 8:03 AM
 To: [EMAIL PROTECTED]
 Subject: 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

 This message contains confidential information and is intended only
 for the individual named.  If you are not the named addressee you
 should not disseminate, distribute or copy this e-mail.  Please
 notify the sender immediately by e-mail if you have received this
 e-mail by mistake and delete this e-mail from your system.

 E-mail transmission cannot be guaranteed to be secure or error-free
 as information could be intercepted, corrupted, lost, destroyed,
 arrive late or incomplete, or contain viruses.  The sender therefore
 does not accept liability for any errors or omissions in the contents
 of this message which arise as a result of e-mail transmission.  If
 verification is required please request a hard-copy version.  This
 message is provided for informational purposes and should not be
 construed as a solicitation or offer to buy or sell any securities or
 related financial instruments.


 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities or
related financial instruments.


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Struts taglibs without Struts

2002-10-16 Thread James Mitchell

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://www.open-tools.org




 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: 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.

 Someone who had this knowledge sent me the answer.

 Praful


 -Original Message-
 From: James 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-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, October 16, 2002 8:03 AM
  To: [EMAIL PROTECTED]
  Subject: 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
 
  This message contains confidential information and is intended only
  for the individual named.  If you are not the named addressee you
  should not disseminate, distribute or copy this e-mail.  Please
  notify the sender immediately by e-mail if you have received this
  e-mail by mistake and delete this e-mail from your system.
 
  E-mail transmission cannot be guaranteed to be secure or error-free
  as information could be intercepted, corrupted, lost, destroyed,
  arrive late or incomplete, or contain viruses.  The sender therefore
  does not accept liability for any errors or omissions in the contents
  of this message which arise as a result of e-mail transmission.  If
  verification is required please request a hard-copy version.  This
  message is provided for informational purposes and should not be
  construed as a solicitation or offer to buy or sell any securities or
  related financial instruments.
 
 
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]



 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities or
related financial instruments.


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 with the logic tags, although if 
you can use JSP 1.2, you should just use the JSTL for that.  If 
you're stuck with JSP 1.1, you could probably pull out all the Struts 
specific bits of the bean, html, and logic tag libraries in half a 
day or so.

Check the license to make sure you can use the resulting code, but 
the Apache license is pretty liberal...

Joe




James Mitchell
Software Engineer/Struts Evangelist
http://www.open-tools.org




  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, October 16, 2002 8:03 AM
  To: [EMAIL PROTECTED]
  Subject: 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

  This message contains confidential information and is intended only
  for the individual named.  If you are not the named addressee you
  should not disseminate, distribute or copy this e-mail.  Please
  notify the sender immediately by e-mail if you have received this
  e-mail by mistake and delete this e-mail from your system.

  E-mail transmission cannot be guaranteed to be secure or error-free
  as information could be intercepted, corrupted, lost, destroyed,
  arrive late or incomplete, or contain viruses.  The sender therefore
  does not accept liability for any errors or omissions in the contents
  of this message which arise as a result of e-mail transmission.  If
  verification is required please request a hard-copy version.  This
  message is provided for informational purposes and should not be
  construed as a solicitation or offer to buy or sell any securities or
  related financial instruments.


  --
  To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


-- 
--
* Joe Germuska{ [EMAIL PROTECTED] }
It's pitiful, sometimes, if they've got it bad. Their eyes get 
glazed, they go white, their hands tremble As I watch them I 
often feel that a dope peddler is a gentleman compared with the man 
who sells records.
--Sam Goody, 1956

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Struts taglibs without Struts

2002-10-16 Thread Praful . Kapadia

So your pole and instruction manual in this case is: try out every tag in every taglib 
and prove it yourself?

This seems to be asking too much of someone dipping their toe for the first time in 
the Struts pond. 

Praful
 

-Original Message-
From: James Mitchell [mailto:[EMAIL 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://www.open-tools.org




 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: 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.

 Someone who had this knowledge sent me the answer.

 Praful


 -Original Message-
 From: James 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-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, October 16, 2002 8:03 AM
  To: [EMAIL PROTECTED]
  Subject: 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
 
  This message contains confidential information and is intended only
  for the individual named.  If you are not the named addressee you
  should not disseminate, distribute or copy this e-mail.  Please
  notify the sender immediately by e-mail if you have received this
  e-mail by mistake and delete this e-mail from your system.
 
  E-mail transmission cannot be guaranteed to be secure or error-free
  as information could be intercepted, corrupted, lost, destroyed,
  arrive late or incomplete, or contain viruses.  The sender therefore
  does not accept liability for any errors or omissions in the contents
  of this message which arise as a result of e-mail transmission.  If
  verification is required please request a hard-copy version.  This
  message is provided for informational purposes and should not be
  construed as a solicitation or offer to buy or sell any securities or
  related financial instruments.
 
 
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]



 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities or
related financial instruments.


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message

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 without Struts


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 with the logic tags, although if 
you can use JSP 1.2, you should just use the JSTL for that.  If 
you're stuck with JSP 1.1, you could probably pull out all the Struts 
specific bits of the bean, html, and logic tag libraries in half a 
day or so.

Check the license to make sure you can use the resulting code, but 
the Apache license is pretty liberal...

Joe




James Mitchell
Software Engineer/Struts Evangelist
http://www.open-tools.org




  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, October 16, 2002 8:03 AM
  To: [EMAIL PROTECTED]
  Subject: 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

  This message contains confidential information and is intended only
  for the individual named.  If you are not the named addressee you
  should not disseminate, distribute or copy this e-mail.  Please
  notify the sender immediately by e-mail if you have received this
  e-mail by mistake and delete this e-mail from your system.

  E-mail transmission cannot be guaranteed to be secure or error-free
  as information could be intercepted, corrupted, lost, destroyed,
  arrive late or incomplete, or contain viruses.  The sender therefore
  does not accept liability for any errors or omissions in the contents
  of this message which arise as a result of e-mail transmission.  If
  verification is required please request a hard-copy version.  This
  message is provided for informational purposes and should not be
  construed as a solicitation or offer to buy or sell any securities or
  related financial instruments.


  --
  To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


-- 
--
* Joe Germuska{ [EMAIL PROTECTED] }
It's pitiful, sometimes, if they've got it bad. Their eyes get 
glazed, they go white, their hands tremble As I watch them I 
often feel that a dope peddler is a gentleman compared with the man 
who sells records.
--Sam Goody, 1956

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities or
related financial instruments.


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 was yes. I am sure struts 1.0 tags
will work outside of struts. However, in 1.1 the ApplicationConfig
objects were added for application modules, and so there will probably
be cases where they won't work.

Now that the JSTL is out, use those tags first.


-Rob


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Struts TagLibs

2001-04-13 Thread Peter Alfors

We are using our home grown tag libraries.
What features are you talking about?

Pete

Rajan Gupta wrote:

 Hello!
 Has anybody tried to use Taglibs with Struts instead of Struts tag
 libraries for features which are available in Taglibs ?

 Thanks
 Rajan

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.com/


begin:vcard 
n:;
x-mozilla-html:FALSE
org:BRIMG SRC="http://www.irista.com/logo/irista.gif"BRBRFONT Color=#80FONT SIZE=2BBringing Vision to Your Supply Chain
adr:;;
version:2.1
end:vcard



Re: Struts TagLibs

2001-04-13 Thread Rajan Gupta

I am looking for all type of tags such as equal, iterate etc related to
logic  presentation.
Just out of curiosity why did u not decide to use TagLibs instead of
building your own, were TagLibs were not sufficient or were not available
when u started on your project.

Rajan
--- Peter Alfors [EMAIL PROTECTED] wrote:
 We are using our home grown tag libraries.
 What features are you talking about?
 
 Pete
 
 Rajan Gupta wrote:
 
  Hello!
  Has anybody tried to use Taglibs with Struts instead of Struts tag
  libraries for features which are available in Taglibs ?
 
  Thanks
  Rajan
 
  __
  Do You Yahoo!?
  Get email at your own domain with Yahoo! Mail.
  http://personal.mail.yahoo.com/
  begin:vcard 
 n:;
 x-mozilla-html:FALSE
 org:BRIMG SRC="http://www.irista.com/logo/irista.gif"BRBRFONT
 Color=#80FONT SIZE=2BBringing Vision to Your Supply Chain
 adr:;;
 version:2.1
 end:vcard
 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/



Re: Struts TagLibs

2001-04-13 Thread Ted Husted

Both projects started about the same time. 

Check the archive on the Developer's list for a recent thread
(mail-archive.com). 

Rajan Gupta wrote:
 
 I am looking for all type of tags such as equal, iterate etc related to
 logic  presentation.
 Just out of curiosity why did u not decide to use TagLibs instead of
 building your own, were TagLibs were not sufficient or were not available
 when u started on your project.