RE: html:javascript simple question

2004-02-19 Thread Kris Schneider
> > http://jakarta.apache.org/taglibs/doc/datetime-doc/intro.html > > Ben > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 19 februari 2004 11:27 > To: [EMAIL PROTECTED] > Subject: html:javascript simple question &g

RE: html:javascript simple question

2004-02-19 Thread Turner Benjamin
the DateTime taglib would perfectly fit your needs: http://jakarta.apache.org/taglibs/doc/datetime-doc/intro.html Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 19 februari 2004 11:27 To: [EMAIL PROTECTED] Subject: html:javascript simple question Hi

html:javascript simple question

2004-02-19 Thread struts
Hi, In my jsp's i do on the bottom of the jsp: today(); In my head section i then define the method... function today(){ var today = new Date(); var month = today.getMonth()+1; var year = today.getYear(); var day = today.getDate(); if(day<10)

Simple Question about Long property

2004-02-16 Thread Renato Romano
I have a form with a Long property; I used Long instead of long to have the property nullable, but if the (html) form includes such a property, struts sets the corresponding bean property to 0, even if it has no value (value=""); what I'd like is struts to leave the property at null!! It also behav

checkbox - simple question

2004-01-20 Thread dirk
Hello, The value of a checkbox is added to the sessionScope. How can i print "checked box 1" and "not checked box1" using the logic taglib ? Thanks

Re: simple question

2004-01-05 Thread Mark Lowe
! - Original Message - From: "Nicolas De Loof" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, January 05, 2004 2:40 PM Subject: Re: simple question It should work (I use it !) Did you include the taglib directive for struts

Re: simple question

2004-01-05 Thread Camron G . Levanger
url%> then i get an org.apache.jasper.JasperException: Unable to compile class for JSP any idea ? Thanks ! - Original Message - From: "Nicolas De Loof" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, January 05, 200

Re: simple question

2004-01-05 Thread dirk
No thats not it, It's not working with or without type... org.apache.jasper.JasperException Thx - Original Message - From: "Matthias Wessendorf" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Monday, Januar

Re: simple question

2004-01-05 Thread dirk
]> Sent: Monday, January 05, 2004 2:40 PM Subject: Re: simple question > It should work (I use it !) > > Did you include the taglib directive for struts-bean ? > > Nico. > > > > How can i have a dynamic value in the action ?

RE: simple question

2004-01-05 Thread Matthias Wessendorf
] greetings -Original Message- From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 2:41 PM To: Struts Users Mailing List Subject: Re: simple question It should work (I use it !) Did you include the taglib directive for struts-bean ? Nico. How can i have a

Re: simple question

2004-01-05 Thread Nicolas De Loof
It should work (I use it !) Did you include the taglib directive for struts-bean ? Nico. How can i have a dynamic value in the action ? The following is not working . Thanks ! - To unsubscribe, e-mail: [EMAIL PROTECT

simple question

2004-01-05 Thread dirk
How can i have a dynamic value in the action ? The following is not working . Thanks !

simple question on displaytag

2003-12-30 Thread dirk
if I put paging.banner.placement=bottom i get the paging as well in bottom and in top. How can i put it only in the bottom ? Thanks

AW: simple question

2003-12-22 Thread Matthias Wessendorf
hi, you can also use in jsp: and in action before: String hulp=request.getParameter("users.userId"); request.setAttribute("hulp",hulp); //FORWARD - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: simple question

2003-12-22 Thread Claire Wall
quot;); if(hulp==null) hulp = (String)request.getAttribute("hulp"); %> HTH - Original Message - From: "dirk" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, December 22, 2003 3:55 PM Subject: Re: simpl

Re: simple question

2003-12-22 Thread dirk
the value is null allthought the value of help is not null. But i cannot access it in the jsp... thx ! - Original Message - From: "François Richard" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, December 22,

RE: simple question

2003-12-22 Thread Syed, Nazeer
ember 22, 2003 10:42 AM To: Struts Users Mailing List Subject: simple question I have an action which contains the following: String hulp=request.getParameter("users.userId"); return mapping.findForward(CONTINUE); continue points to user.jsp. How can i use in the file user.jsp the v

Re: simple question

2003-12-22 Thread François Richard
hi, try this, <%= request.getParameter("users.userId") %> dirk wrote: I have an action which contains the following: String hulp=request.getParameter("users.userId"); return mapping.findForward(CONTINUE); continue points to user.jsp. How can i use in the file user.jsp the value of hulp ?

simple question

2003-12-22 Thread dirk
I have an action which contains the following: String hulp=request.getParameter("users.userId"); return mapping.findForward(CONTINUE); continue points to user.jsp. How can i use in the file user.jsp the value of hulp ? eg: <%=hulp%> is not working. Thx

Re: simple question

2003-12-19 Thread Mark Lowe
Agreed. On 19 Dec 2003, at 14:02, Kris Schneider wrote: I know the question is targeted at doing this in a JSP, but why wouldn't you just set up a String[100] in application scope, name it "numbers" (or whatever) and do something like: Quoting Mark Lowe <[EMAIL PROTECTED]>: Nothing to ad

Re: simple question

2003-12-19 Thread Kris Schneider
I know the question is targeted at doing this in a JSP, but why wouldn't you just set up a String[100] in application scope, name it "numbers" (or whatever) and do something like: Quoting Mark Lowe <[EMAIL PROTECTED]>: > Nothing to add really just a few variations on a theme. > > >

Re: simple question

2003-12-19 Thread Mark Lowe
Nothing to add really just a few variations on a theme. i think "><%= num %>" /> will also work although perhaps you need to convert the int to a string. On 19 Dec 2003, at 12:50, dirk wrote: I want to create a select box with the values 1 thru 1

RE: simple question

2003-12-19 Thread Joshi, Naveen
<%=""+i%> -Original Message- From: dirk [mailto:[EMAIL PROTECTED] Sent: Friday, December 19, 2003 7:51 AM To: Struts Users Mailing List Subject: simple question I want to create a select box with the values 1 thru 100 how can i do that? What i have is: But that is not w

RE: simple question

2003-12-19 Thread Joshi, Naveen
<%=""+i%> Naveen -Original Message- From: dirk [mailto:[EMAIL PROTECTED] Sent: Friday, December 19, 2003 7:51 AM To: Struts Users Mailing List Subject: simple question I want to create a select box with the values 1 thru 100 how can i do that? What i have is: But tha

simple question

2003-12-19 Thread dirk
I want to create a select box with the values 1 thru 100 how can i do that? What i have is: But that is not working. Any idea ? Thanks ! <% for(int i=0;i<999;i++){ %> <%=i%> <%}%>

Re: Simple Question

2003-11-19 Thread khote
If I'm remembering correctly: link and - Original Message - From: "Malcolm Davis" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, November 19, 2003 9:14 PM Subject: RE: Simple Question > I like for

RE: Simple Question

2003-11-19 Thread Malcolm Davis
I like for the mouse over affect. does not have a mouse over. -Original Message- From: Srinivas Kusunam [mailto:[EMAIL PROTECTED] Sent: Friday, November 14, 2003 2:49 PM To: > Subject: Simple Question Hi All, I my team while in a Code-Review we had a discussion wether

RE: Simple Question

2003-11-16 Thread Naveen S. Kumar
: Srinivas Kusunam [mailto:[EMAIL PROTECTED] Sent: Saturday, November 15, 2003 2:19 AM To: < Subject: Simple Question Hi All, I my team while in a Code-Review we had a discussion wether to use or normal as the later one can do the same work. One option accepted was why do

Re: Simple Question

2003-11-14 Thread Max Cooper
And another good reason: is (more fragile | more typing | harder to read | etc.) than: -Max - Original Message - From: "David Friedman" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, November 14, 2003 12:54

RE: Simple Question

2003-11-14 Thread Wendy Smoak
> One option accepted was why do we need Tag over head if > can handle that ?? > What do you guys suggest I agree, if there is no dynamic content, then I use a plain old HTML tag. -- Wendy Smoak - To unsubscrib

RE: Simple Question

2003-11-14 Thread David Friedman
Subject: Simple Question Hi All, I my team while in a Code-Review we had a discussion wether to use or normal as the later one can do the same work. One option accepted was why do we need Tag over head if can handle that ?? What do you guys suggest Thank

Simple Question

2003-11-14 Thread Srinivas Kusunam
Hi All, I my team while in a Code-Review we had a discussion wether to use or normal as the later one can do the same work. One option accepted was why do we need Tag over head if can handle that ?? What do you guys suggest Thanks, Srini -

Re: simple question

2003-11-13 Thread Gurpreet Dhanoa
you can use OR Where key is the key defined in resources file Cheers Gary - Original Message - From: "Shyam A" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 13, 2003 9:40 PM Subject: simple question > Hi, > > Is there any St

simple question

2003-11-13 Thread Shyam A
Hi, Is there any Struts tag for an expression like <%= request.getAttribute("attributeName")%> where the attribute is a String. Thanks, Shyam __ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree --

RE: simple question

2003-09-08 Thread Siggelkow, Bill
] Subject: simple question Hi all, I think I have a relative easy question. I have a J2EE application which has some entitybeans. I want to display the values of these entitybeans in my JSP pages (using Struts). I have made value objects of the entitybeans. In my ListAllCategoriesAction.java, I

RE: simple question

2003-09-08 Thread Mohan Radhakrishnan
beans like this are useful because they can be manipulated quite well with the tag handlers. Mohan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003 7:15 PM To: [EMAIL PROTECTED] Subject: simple question Hi all, I think I have a

simple question

2003-09-08 Thread harm
Hi all, I think I have a relative easy question. I have a J2EE application which has some entitybeans. I want to display the values of these entitybeans in my JSP pages (using Struts). I have made value objects of the entitybeans. In my ListAllCategoriesAction.java, I do something like the fol

RE: Simple question

2003-08-14 Thread Ravi Kora
TECTED] > Sent: Tuesday, August 12, 2003 10:22 AM > To: 'Struts Users Mailing List'; '[EMAIL PROTECTED]' > Subject: RE: Simple question > > > Should I use an onclick method handler to the image tag so I > can submit the form?? > > > > -Or

Re: Simple question

2003-08-14 Thread Mark Lowe
August 12, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: RE: Simple question Ya, u can do that or u can use a html:link tag(generates in html) like below. You ultimately submit the form in the javascript fn of href. HTH, Ravi Kora [EMAIL PROTECTED] 337-739-34

RE: Simple question

2003-08-14 Thread Alex Shneyderman
is more parameters that are submitted with this type of image button) Alex. > -Original Message- > From: Ravi Kora [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 12, 2003 10:43 AM > To: 'Struts Users Mailing List' > Subject: RE: Simple question > > Y

RE: Simple question

2003-08-14 Thread Norr, Peter
Should I use an onclick method handler to the image tag so I can submit the form?? -Original Message- From: Alex Shneyderman [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 7:29 AM To: 'Struts Users Mailing List' Subject: RE: Simple question Use tag. >

RE: Simple question

2003-08-14 Thread Mark Galbreath
Probably because HTML doesn't. -Original Message- From: Norr, Peter [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 11:05 AM To: 'Struts Users Mailing List' Subject: RE: Simple question Any reason why the struts tag does not support the "src" a

Re: Simple question

2003-08-14 Thread Mark Lowe
t 12, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: RE: Simple question Ya, u can do that or u can use a html:link tag(generates in html) like below. You ultimately submit the form in the javascript fn of href. HTH, Ravi Kora [EMAIL PROTECTED] 337-739-34

RE: Simple question

2003-08-14 Thread Alex Shneyderman
Use tag. > -Original Message- > From: Norr, Peter [mailto:[EMAIL PROTECTED] > Sent: Monday, August 11, 2003 6:26 PM > To: 'Struts Users Mailing List' > Subject: Simple question > > How do I

RE: Simple question

2003-08-12 Thread Norr, Peter
Any reason why the struts tag does not support the "src" attribute? -Original Message- From: Ravi Kora [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: RE: Simple question Ya, u can do that or u can

Simple question

2003-08-11 Thread Norr, Peter
How do I use my own image in a or tag? -- This message is intended only for the personal and confidential use of the designated recipient(s) named above. If you are not the intended recipient of this message you are her

Re: [XEN] Simple question: forward and redirect

2003-03-14 Thread Phil Steitz
Fabio Mancinelli wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 13 Mar 2003, Ian Hunter wrote: Are you redirecting or forwarding to your JSP from that Action? What is the exact difference between forwarding and redirecting? What are their implications? I searched the Servlet and

RE: [XEN] Simple question: forward and redirect

2003-03-14 Thread andre . powroznik
Re: [XEN] Simple question: forward and redirect When you forward, you pass control to another class within your current application root context. When you redirect, you can pass in or out of the context. Simon - "If I have this wrong, my site is well sha***d!!" - Original

Re: [XEN] Simple question: forward and redirect

2003-03-14 Thread Fabio Mancinelli
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, 14 Mar 2003, Simon Kelly wrote: > When you forward, you pass control to another class within your current > application root context. > > When you redirect, you can pass in or out of the context. > What do you mean? Aren't we talking at the

Re: [XEN] Simple question: forward and redirect

2003-03-14 Thread Simon Kelly
t;[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, March 14, 2003 11:28 AM Subject: [XEN] Simple question: forward and redirect > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Thu, 13 Mar 2003, Ian Hunter wrote: > > >

[XEN] Simple question: forward and redirect

2003-03-14 Thread Fabio Mancinelli
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 13 Mar 2003, Ian Hunter wrote: > Are you redirecting or forwarding to your JSP from that Action? What is the exact difference between forwarding and redirecting? What are their implications? I searched the Servlet and JSP specs but I haven'

Re: simple question

2003-03-14 Thread modena
Thank you, you have been very kind. Ale - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: simple question

2003-03-14 Thread Nicolas De Loof
You don't need an ActionForm (but you can). You can use request.getParameter("in") in your action, you can use a dynaForm too if you don't wan't to create a formBean for this. As you can read in the code I sent, I did not used , so action form definition is not needed. This beeing said, using a d

Re: simple question

2003-03-14 Thread modena
Thank, but with this i must crete an ActionForm...it's possible avoid to create an ActionForm for an form? Thank for help Ale - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: simple question

2003-03-14 Thread Nicolas De Loof
You can try this : " method="POST"> home Notice the (not visible) HTML form will add a visual line break in browser. You can avoid it by putting it a page bottom or in an hidden div, or between two rows of a table. Nico. > > home > > > this obviously don't work...but there is a sy

simple question

2003-03-14 Thread modena
Hi, there is a possibility to send an object in the request if i don't pass it with parameter of the link? for example: <% request.setAttribute("in","index"); %> ... home this obviously don't work...but there is a system to obtain this whit a Struts component? I should pass a Stri

RE: html-el:link and logic-el:iterate and tiles --- Just a simple question.

2003-02-26 Thread Jeff Born
the insight as all ways, Jeff Born. -Original Message- From: Ray Madigan [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 2:06 AM To: Struts Users Mailing List Subject: RE: html-el:link and logic-el:iterate and tiles --- Just a simple question. I would check to see if

RE: html-el:link and logic-el:iterate and tiles --- Just a simple question.

2003-02-25 Thread Ray Madigan
#x27;Struts Users Mailing List' Subject: html-el:link and logic-el:iterate and tiles --- Just a simple question. I would like the html-el:link to produce > I would like in to work with the iterate tag. But so far I am not getting it to work.

html-el:link and logic-el:iterate and tiles --- Just a simple question.

2003-02-25 Thread Jeff Born
I would like the html-el:link to produce > I would like in to work with the iterate tag. But so far I am not getting it to work. Any insight would be greatly appreciated, Jeff Born - To unsubscribe, e-mail: [EMAIL PRO

Re: Simple question

2003-02-12 Thread David Graham
The form bean is stored in the session or request so your jsp can access it with: David From: julian green <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject: Re: Simple question

Re: Simple question

2003-02-12 Thread julian green
Sorry, from within a jsp. Julian David Graham wrote: From where? David From: julian green <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject: Simple question Date: Wed, 12

RE: Simple question

2003-02-12 Thread John Espey
TECTED]] > Sent: Wednesday, February 12, 2003 11:09 AM > To: Struts Users Mailing List > Subject: Simple question > > > Is there a nifty way of accessing attributes of the form bean? > > Julian > > >

RE: Simple question

2003-02-12 Thread Guptill, Josh
: Struts Users Mailing List Subject: Simple question Is there a nifty way of accessing attributes of the form bean? Julian - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: Simple question

2003-02-12 Thread David Graham
From where? David From: julian green <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject: Simple question Date: Wed, 12 Feb 2003 17:09:24 + Is there a nifty way of accessing

Simple question

2003-02-12 Thread julian green
Is there a nifty way of accessing attributes of the form bean? Julian - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

simple (?) question ;)

2003-01-09 Thread Andrzej Roszkowski
Hello! I'm new to struts and a little bit leazy ;). I have out-of-host html form that have to be redirected to my application, then I have to virify that form and redirect this values to other html form (jsp) that contains the same fields plus some more to enter, that means the second form is chi

Re: A simple question about i18n

2002-10-15 Thread Rajesh Kanade
ShashiKiran Thanx a bunch. It works Rajesh Kanade 91-22-660-3666 - Original Message - From: "Shashikiran M" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 11:24 AM Subject: RE: A simple

RE: A simple question about i18n

2002-10-14 Thread Shashikiran M
Try this: -Original Message- From: Rajesh Kanade [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 11:07 AM To: Struts Mailing list Subject: A simple question about i18n I have a form where I have used to submit it. Instead of value = "Log On" being hardcoded

A simple question about i18n

2002-10-14 Thread Rajesh Kanade
I have a form where I have used to submit it. Instead of value = "Log On" being hardcoded I want to get it from my resource property file. How can I do it. I am new to Struts so any help would be great Rajesh Kanade 91-22-660-3666 -- To unsubscribe, e-mail: Fo

RE: Simple Question

2002-09-09 Thread James Mitchell
> -Original Message- > From: Mark Silva [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 09, 2002 3:29 PM > To: Struts Users Mailing List > Subject: RE: Simple Question > > > No, > > i want to refer to it in the consutructor of my ActionForm, to > se

Re: Simple Question

2002-09-09 Thread micael
in an included >property file. See Properties API > >At 12:07 PM 9/9/2002 -0700, you wrote: >>This is probably a simple question, but i cannot find the answer in any >>straighforward place. >> >>how do i get a property from my ApplicationResources.properties fi

Re: Simple Question

2002-09-09 Thread micael
You might also note that you can have default values in an included property file. See Properties API At 12:07 PM 9/9/2002 -0700, you wrote: >This is probably a simple question, but i cannot find the answer in any >straighforward place. > >how do i get a prop

RE: Simple Question

2002-09-09 Thread Martin Cooper
ppropriate bundle given a request instance, take a look at: Action.getResources(HttpServletRequest, String) -- Martin Cooper > -Original Message- > From: Mark Silva [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 09, 2002 12:29 PM > To: Struts Users Mailing List > Sub

RE: Simple Question

2002-09-09 Thread micael
s-atlanta > > > > > > -Original Message- > > From: Mark Silva [mailto:[EMAIL PROTECTED]] > > Sent: Monday, September 09, 2002 3:07 PM > > To: Struts Users Mailing List > > Subject: Simple Question > > > > >

RE: Simple Question

2002-09-09 Thread Mark Silva
than using the ResourcesBundle from scratch. is there something like this? thanks, mark -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 12:21 PM To: Struts Users Mailing List Subject: RE: Simple Question Are doing this within an

RE: Simple Question

2002-09-09 Thread James Mitchell
ember 09, 2002 3:07 PM > To: Struts Users Mailing List > Subject: Simple Question > > > This is probably a simple question, but i cannot find the answer > in any straighforward place. > > how do i get a property from my ApplicationResources.properties > file within

Re: Simple Question

2002-09-09 Thread amr
Silva" nex.com> cc: Subject: Si

Simple Question

2002-09-09 Thread Mark Silva
This is probably a simple question, but i cannot find the answer in any straighforward place. how do i get a property from my ApplicationResources.properties file within some java code. i know how to do this using a bean tag, but not otherwise. is there a helper class to do this? i am

Re: Simple question about Struts

2002-08-08 Thread Melissa L Kelley
On Thu, 8 Aug 2002, Eddie Bush wrote: > Go check out Chuck's book to see what Struts can do and how easily it > can be configured. If you have specific questions about "Well, would my > end usrs have to program to do ?" just swing by and drop us a note. > There are a bunch (understatement!) of

Re: Simple question about Struts

2002-08-08 Thread Eddie Bush
Craig could address this better, and I'm sure that he will eventually (he's a busy guy). E. Laverdiere wrote: >Hi all, > >I've studiing Struts for the past 3 weeks because I have done a generic Jsp >"content-management" web site connected on a MySql database using a set of >custom tag libraries

Simple question about Struts

2002-08-08 Thread E. Laverdiere
Hi all, I've studiing Struts for the past 3 weeks because I have done a generic Jsp "content-management" web site connected on a MySql database using a set of custom tag libraries following the Manning book "Tag Librairies". So I am still new at Struts, and I would like a simple advice over the S

Re: Simple Question

2002-05-31 Thread Adam Hardy
Hi Norman, it's not clear what your problem is. What have you tried? Try reading this and reposting the question: http://www.tuxedo.org/~esr/faqs/smart-questions.html Adam Ryan Norman wrote: >Hi, > >I am Norman. > >I have a simple problem for which I don't know the answer. > >I have a single

Simple Question

2002-05-30 Thread Ryan Norman
Hi, I am Norman. I have a simple problem for which I don't know the answer. I have a single form that I want to use for both add and view user. I was able to successfully add a user. After adding the user I want the user details to be displayed. Can somebody throw some lights on what I need to

Re: Having trouble nesting "iterate" tags (long explanation, relatively simple question)

2002-04-10 Thread Rob Jellinghaus
A total stab in the dark here, I'm a JSP newbie: At 04:20 PM 4/9/2002 -0700, Rick Mann wrote: > > > > >As soon as I do that, I get "org.apache.jasper.compiler.ParseException: End >of content reached while more parsing required: tag nesting error?". Should it maybe be > (note the cl

Having trouble nesting "iterate" tags (long explanation,relatively simple question)

2002-04-10 Thread Rick Mann
Hi. I'm fairly new to Struts, but I've gone through the Struts documentation and KeyboardMonkey's helpful tutorial. What I want to do is (almost) right out of the tutorial, but it's not working the way I would expect. The list archives show that other people have had this problem, and the few rea

Re[2]: This hopefully is a simple question that has been dealt with

2002-03-30 Thread Rick Reumann
ilto:[EMAIL PROTECTED]] WWC> Sent: Thursday, March 28, 2002 10:48 PM WWC> To: [EMAIL PROTECTED]; [EMAIL PROTECTED] WWC> Subject: Re: This hopefully is a simple question that has been dealt WWC> with WWC> I haven't found the solution I will use yet to solve this problem WWC>

Re[6]: Does this tag exist & architecture [was] This hopefully is a simple question that has been dealt with

2002-03-30 Thread Rick Reumann
On Saturday, March 30, 2002, 10:33:32 AM, Vladimir Levin wrote: VL> 2) Performance penalty for copying a list of result beans to VL> a list of form beans. Exactly. What if you a very large result set of Employee objects being returned. Now you have to go through this

RE: This hopefully is a simple question that has been dealt with

2002-03-30 Thread Wellie W. Chao
Vladimir Levin [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 10:48 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: This hopefully is a simple question that has been dealt with I haven't found the solution I will use yet to solve this problem in my own project, so advice

Does this tag exist & architecture [was] This hopefully is a simple question that has been dealt with

2002-03-29 Thread Rick Reumann
ve never used it, since it always seemed like ML> learning to use it was more work than doing it ML> manually. ML> -- Larry Maturo ML>[EMAIL PROTECTED] ML> -Original Message- ML> From: Rick Reumann [mailto:[EMAIL PROTECTED]] ML> Sent: Thursday, March 28, 2002 9

Re: This hopefully is a simple question that has been dealt with

2002-03-28 Thread Vladimir Levin
I haven't found the solution I will use yet to solve this problem in my own project, so advice would definitely be helpful. I found a taglibrary that purports to do this (at http://jsptags.com) http://www.sqlt.com/taglib.html I have not investigated using it just yet though. I think even writin

This hopefully is a simple question that has been dealt with

2002-03-28 Thread Rick Reumann
Sorry to post this question again, but I'm still curious about this ... I'm sure this question has come up but I'm not having much luck searching the archives. I'm really new to Struts so I hope this question isn't too out of place for this list. Lets say we are dealing with Employee beans. I wou

Re: simple question

2001-07-03 Thread Rama Krishna
esday, July 03, 2001 1:13 PM Subject: AW: simple question > you can compare a property to an int value, but you have to quote it: > > > > > -Ursprungliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Im Auftrag > von gdelgado > Gesend

AW: simple question

2001-07-03 Thread Norman Timmler
you can compare a property to an int value, but you have to quote it: -Ursprungliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Im Auftrag von gdelgado Gesendet: Dienstag, 3. Juli 2001 21:27 An: [EMAIL PROTECTED] Betreff: simple question > can I use the tag

simple question

2001-07-03 Thread gdelgado
> can I use the tag in other words can i use an int ? how about a boolean? thanks in advance. Gus

Re: simple question

2001-04-25 Thread Peter Alfors
>From the pageContext javadoc: PAGE_SCOPE page scope: (this is the default) the named reference remains available in this PageContext until the return from the current Servlet.service() invocation. REQUEST_SCOPE request scope: the named reference remains available from the ServletRequest associ

RE: simple question

2001-04-25 Thread Nanduri, Amarnath
Thanx everybody for clarifying. cheers, Amar.. -Original Message- From: Peter Alfors [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 3:50 PM To: [EMAIL PROTECTED] Subject: Re: simple question >From the pageContext javadoc: PAGE_SCOPE page scope: (this is the default)

Re: simple question

2001-04-25 Thread Jonathan
page what variables it contains by using page scope. - Original Message - From: Nanduri, Amarnath To: '[EMAIL PROTECTED]' Sent: Wednesday, April 25, 2001 3:35 PM Subject: simple question Hi Guys,     Can anyone tell me the differen

simple question

2001-04-25 Thread Nanduri, Amarnath
Title: Java Bean log file. Hi Guys,     Can anyone tell me the difference between 'Page Scope' and 'Request Scope'. What is the boundaries set by each one.. Thanks a lot.   cheers, Amar..

Re: Date formatting (simple question)

2001-04-12 Thread David Winterfeldt
The Jakarta Tablibs project has a really nice DateTime Taglib. http://jakarta.apache.org/taglibs/index.html It does a lot more than just this, but here is an example. David --- Oleg V Alexeev <[EMAIL PROTECTED]> wrote: > Hello Matthew, > > Thursday, April 12, 2001, 5:55:21 AM, you wrote

Re: Date formatting (simple question)

2001-04-11 Thread Oleg V Alexeev
Hello Matthew, Thursday, April 12, 2001, 5:55:21 AM, you wrote: MOH> Can I format java.util.Date presentations with , or do I need to MOH> do something at the property getter? You can do it in getter method and by special version of bean:write tag - with parameters to define formatting type and

  1   2   >