Re: jakarta input taglib libraries

2007-06-06 Thread Stephen Ince
Kris, That helps a lot. I was going crazy looking for 1.2. Steve - Original Message - From: "Kris Schneider" <[EMAIL PROTECTED]> To: "Tag Libraries Users List" Sent: Wednesday, June 06, 2007 9:45 PM Subject: Re: jakarta input taglib libraries Stephen I

Re: jakarta input taglib libraries

2007-06-06 Thread Kris Schneider
aglibs/proper/input/trunk/conf/input.tld?view=markup Steve - Original Message - From: "Kris Schneider" <[EMAIL PROTECTED]> To: "Tag Libraries Users List" Sent: Wednesday, June 06, 2007 7:27 PM Subject: Re: jakarta input taglib libraries Stephen Ince wrote: I a

Re: jakarta input taglib libraries

2007-06-06 Thread Stephen Ince
the El expression stuff in struts 1.3. Steve - Original Message - From: "Kris Schneider" <[EMAIL PROTECTED]> To: "Tag Libraries Users List" Sent: Wednesday, June 06, 2007 7:27 PM Subject: Re: jakarta input taglib libraries Stephen Ince wrote: I am trying to

Re: jakarta input taglib libraries

2007-06-06 Thread Kris Schneider
will work with EL expressions in a JSP 2.0 (or later) container - like Tomcat 5.5. This is due to the fact that EL evaluation was moved into the container as of JSP 2.0. I'm pretty sure the Input taglib falls into that category, but it should be really easy to test ;-). BTW, I don't thi

jakarta input taglib libraries

2007-06-06 Thread Stephen Ince
I am trying to download 1.2 taglib-input but I only see 1.0 on the jakarata site. I am missing something? Does taglib-input 1.2 support EL expression? e.g. can I do the following. default="${durationType}" /> Steve - To uns

Re: input taglib - defaulting checkboxes to checked when using ?var=value in URL

2004-03-11 Thread Felipe Leme
Hi Charles, On Thu, 2004-03-11 at 13:18, Charles Nealey wrote: > Is this a known bug or is there just no way to get this to work due to the > way checkboxes are submitted (nothing sent if nothing is checked)? Is there > a way to get around this? Any ideas??? I worked around it to do what I want >

input taglib - defaulting checkboxes to checked when using ?var=value in URL

2004-03-11 Thread Charles Nealey
I am using the Jakarta input taglib, the version published on 3/9/04. Here is an example from the included input-examples.war file (from the included form.jsp example file which also has text input, text area input, select box input, and radio button input): <% String[] defaults = new Str

input taglib - defaulting checkboxes to checked when using ?var=value in URL

2004-03-10 Thread Charles Nealey
I am using the Jakarta input taglib, the version published on 3/9/04. Here is an example from the included input-examples.war file (from the included form.jsp example file): <% String[] defaults = new String[2]; defaults[0] = "2"; defaults[1] = "5"; %> Numbers you

Re: EL in Input taglib

2003-02-18 Thread Glenn Nielsen
The input taglib was developed before there was the Standard taglib and the EL. Over time, those taglibs here which are not superceded by the Standard taglib may have support for the EL added. Glenn Igor Kozlov wrote: Hello! I have a question. Why expression language don't used in

EL in Input taglib

2003-02-18 Thread Igor Kozlov
Hello! I have a question. Why expression language don't used in Input taglib? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Running the input taglib example in the Netbeans

2002-12-16 Thread Ricardo Damiao
Hello, I'm trying to run the input tag example, enclosed in the jakarta-taglibs-src-20021216.zip, on Netbeans 3.4 (Tomcat internal) and I get the following error when it try to compile the jsp: form.jsp [36:4] Unable to find setter method for attribute: attributes I've mounted the .jar with t

input taglib and javascript

2002-06-06 Thread Sonthaya Rojtanongchai
Hello, How can i use javascript check event with jakarta input taglib? thanks, soya

Re: FW: Input taglib

2001-08-09 Thread Shawn Bayern
Hi Robin. I'm away on vacation for the rest of the week, but if nobody gets a chance to look at this issue before then, I'd be happy to take a look at it early next week. Thanks for the message, Shawn On Thu, 9 Aug 2001, Robin Mannering wrote: > I've been using the input library for some time

FW: Input taglib

2001-08-09 Thread Robin Mannering
I've been using the input library for some time and it's great but I've come across one problem though recently which concerns select/drop down options. The drop down will have the relevant entry selected only when it receives a new request object (via a response.sendRedirect/form submission/hy

Re: Input-taglib question

2001-04-30 Thread Peter Alfors
My understanding is that a redirect creates a new request. Whereas, the forward uses the same request. So that would be why you were losing data. HTH, Pete Sam Newman wrote: > It ok, fixed it. I needed to use a RequestDispatcher to forward, rather than > redirecting the user, e.g.: > > Re

Re: Input-taglib question

2001-04-30 Thread Sam Newman
It ok, fixed it. I needed to use a RequestDispatcher to forward, rather than redirecting the user, e.g.: RequestDispatcher rd = req.getRequestDispatcher("myForm.jsp"); rd.forward(); As opposed to: res.sendredirect(); sam

Input-taglib question

2001-04-30 Thread Sam Newman
I'm currently using the input taglib library. When I submit a form and the action on the form is simply to redisplay the page (e.g. same as the example jsp), the fields get populated with the data as expected. When I replace the action of the form with a servlet, which simply redirects ba

Re: input taglib

2001-04-06 Thread Curt Wilhelm
1992 > > > -Original Message- > From: Curt Wilhelm [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 13, 2001 7:35 PM > To: [EMAIL PROTECTED] > Subject: input taglib > > Hi, > > I am using the input Taglib and it seems to

RE: input taglib

2001-03-15 Thread Bala Gurram
1988 1989 1990 1991 1992 -Original Message- From: Curt Wilhelm [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 13, 2001 7:35 PM To: [EMAIL PROTECTED] Subject: input taglib Hi, I am using the in

input taglib

2001-03-15 Thread Curt Wilhelm
Hi, I am using the input Taglib and it seems to work well when i'm using JSP/HTML. However, I have a problem when trying to use it with xslt attributes. I'm using the xalan processor. Are there any plans to support xsl:attribute to set the select attribute of the option tag. When t