Re: URL tag question

2024-10-30 Thread Lukasz Lenart
śr., 30 paź 2024 o 16:32 Matt Williams napisał(a): > > Thanks Nate! I overlooked that! > This does work! > > > name="myData" value="%{#myDataList}" /> > Feel free to edit the page and add your example, PRs are welcome :) Cheers Łukasz --

Re: URL tag question

2024-10-30 Thread Matt Williams
, but instead put them all into an Array or Iterable object and add that as the value for a single param child tag. Regards, Nate -Original Message- From: Matt Williams Sent: Wednesday, 30 October 2024 15:52 To: user@struts.apache.org Subject: URL tag question I am using Struts 6.6

RE: URL tag question

2024-10-30 Thread Nate Kerkhofs
ginal Message- From: Matt Williams Sent: Wednesday, 30 October 2024 15:52 To: user@struts.apache.org Subject: URL tag question I am using Struts 6.6.0, I am needing to generate a URL using the s:url tag that will pass a List of values (example:  myurl.action?myData=1&myData=2&myData=3)

URL tag question

2024-10-30 Thread Matt Williams
I am using Struts 6.6.0, I am needing to generate a URL using the s:url tag that will pass a List of values (example:  myurl.action?myData=1&myData=2&myData=3) I have:     1     2     3 However, the generated URL only includes myData=3. Am I missing something? Thanks! Matt

Struts 2 Select Tag Question

2011-07-01 Thread davidZaz3
options in a select box? Or should I open a feature request in JIRA? Thanks! -- View this message in context: http://struts.1045723.n5.nabble.com/Struts-2-Select-Tag-Question-tp4542299p4542299.html Sent from the Struts - User mailing list archive at Nabble.com. --

strust2 tag question

2009-10-06 Thread samsun
sage in context: http://www.nabble.com/strust2-tag-question-tp25771990p25771990.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional co

RE: logic tag question

2008-11-05 Thread Russo, Joe
Thanks for your reply. -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2008 12:03 PM To: Struts Users Mailing List Subject: Re: logic tag question The issue is the bean tag inside the logic tag; that isn't valid JSP. You'll n

RE: logic tag question

2008-11-05 Thread Russo, Joe
Thanks for your reply. -Original Message- From: Kawczynski, David [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2008 11:59 AM To: Struts Users Mailing List Subject: RE: logic tag question You can't nest taglibs. Try using the el tags and using an expression in

Re: logic tag question

2008-11-05 Thread Dave Newton
The issue is the bean tag inside the logic tag; that isn't valid JSP. You'll need to use EL there via the EL tags or JSP 2.0 support, depending on your container. Dave --- On Wed, 11/5/08, Russo, Joe <[EMAIL PROTECTED]> wrote: > From: Russo, Joe <[EMAIL PROTECTED]

RE: logic tag question

2008-11-05 Thread Kawczynski, David
You can't nest taglibs. Try using the el tags and using an expression in place of the Nested bean:write taglib call. -Original Message- From: Russo, Joe [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2008 11:52 AM To: user@struts.apache.org Subject: logic tag question H

logic tag question

2008-11-05 Thread Russo, Joe
Hi, I am trying to use a nested logic tag and I get an error: equal symbol expected Any help would be appreciated. Thanks, Joe Here is the code: ">

Re: [S2] Simple-ish tag question about autocomplete

2008-03-07 Thread Dave Newton
--- Skip Hollowell <[EMAIL PROTECTED]> wrote: > In my app, I don't want to have any of the fields be autocomplete, so I > took the generalized approach of each form calling an onload script that > sets AUTOCOMPLETE=OFF. Turns out, this gets my security folk's knickers > in a twist, and they wou

[S2] Simple-ish tag question about autocomplete

2008-03-07 Thread Skip Hollowell
In my app, I don't want to have any of the fields be autocomplete, so I took the generalized approach of each form calling an onload script that sets AUTOCOMPLETE=OFF. Turns out, this gets my security folk's knickers in a twist, and they would like field itself have AUTOCOMPETE set to off, so

Re: Struts 2 tree tag question

2007-12-01 Thread john feng
put the box inside the iterate loop: the actionform knows how many boxes being checked by the user. On 11/29/07, akash agrawal <[EMAIL PROTECTED]> wrote: > > Hi John, > > Thanks for the insight. If you can share some code that will be helpful to > understand how you used multibox tag. ( I haven

Re: Struts 2 tree tag question

2007-11-29 Thread akash agrawal
Hi John, Thanks for the insight. If you can share some code that will be helpful to understand how you used multibox tag. ( I haven't used multibox tag before). Thanks, -akash john feng <[EMAIL PROTECTED]> wrote: I have created tree that each node displays several attributes of an object, i.e.

Re: Struts 2 tree tag question

2007-11-28 Thread john feng
I have created tree that each node displays several attributes of an object, i.e., top node is Dept object that user could see a checkbox field , DeptNo field, DName field, Location field. clicking top node + image, the second layer nodes display Employee object that user could see a checkbox field

Struts 2 tree tag question

2007-11-28 Thread akash agrawal
Hi, Trying to build a form having a tree where each node in the tree needs to have a checkbox to take input from the user. How can I accomplish this using struts tree tag? Thanks, -Akash - Get easy, one-click access to your favorites. Make Yahoo! your

Re: Struts Tag Question

2007-09-28 Thread Cory D. Wiles
This is how I do it: /* drugClassPropsSrv is my map */ On 9/28/07, Marco Carnevale

Struts Tag Question

2007-09-28 Thread Marco Carnevale
I have a java.util.Map in my action (value stack) and I simply want to print it's contents in an HTML table in my JSP showing the key value pairs. However, I am having an issue figuring out the proper syntax. My initial approach is to iterate over the Maps keys and then during each iteration, call

Re: Simple Struts 2.0.x tag question. "/>

2007-09-06 Thread Laurie Harper
Kenton wrote: ${item.imageURL} Results in this exception (Glassfish v2 RC, Struts 2.0.9, JDK 1.6.02, Windows XP): java.io.IOException: Stream closed ... Could you explain why the EL triggers this exception? Is that a bug or am I doing something wrong? I'm not sure; the expression

Re: Simple Struts 2.0.x tag question. "/>

2007-09-06 Thread Kenton
tation on it? Laurie Harper wrote: > > ${item.imageURL} > > > ${url} > -- View this message in context: http://www.nabble.com/Simple-Struts-2.0.x-tag-question.-%3Cimg-src%3D%22%3Cs%3Aproperty-value%3Ditem.imageURL%22-%3E%22-%3E-tf4388166.html#a12525398 Sent from

Re: Simple Struts 2.0.x tag question. "/>

2007-09-05 Thread Laurie Harper
Kenton wrote: I have a .jspx file in my Struts 2.0.x app. This doesn't work: I get this error (both editor and at runtime): The value of attribute "src" associated with an element type "null" must not contain the '<' character. (The above should regular non-escaped HTML, in

Simple Struts 2.0.x tag question. "/>

2007-09-05 Thread Kenton
ge isn't correct) This: <img src="${item.imageURL}"/> Gets this error: java.io.IOException: Stream closed This: <img src="#{item.imageURL}"/> Gets this error: PWC6317: The attributes for a standard action or an uninterpreted tag cannot be deferred express

Re: s:submit tag question

2007-08-31 Thread darnDao
#x27;s a miracle. > Empty JSPs don't usually result in any request parameters. > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/s%3As

Re: s:submit tag question

2007-08-31 Thread Oleg Mikheev
N N wrote: And a JSP (fragment): ... ... It's a miracle. Empty JSPs don't usually result in any request parameters. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

s:submit tag question

2007-08-31 Thread N N
Hi, I've got the following code: package foo.actions; import com.opensymphony.xwork2.ActionSupport; import java.io.*; public class Bar extends ActionSupport { private String number1; private String number2; private String number3; public String execute() throws Exception

s2 if tag question

2007-06-15 Thread Scott Nesbitt
I am having a bit of trouble using the if tag. This code: Screen Alert: checked value="1">Yes checked value="2">No Gives this error: DEBUG util.OgnlValueStack - Caught an exception while evaluating expression 'userDetailsBean.userPreferencesBean.mmPrelimScreenAlert == 'N'' again

Re: [S2] s:div tag question.

2007-05-04 Thread Musachy Barroso
[EMAIL PROTECTED] Enviada em: quinta-feira, 26 de abril de 2007 09:17 Para: user@struts.apache.org Assunto: [S2] s:div tag question. Hi all, I'm currently using the tag whitin the tag , and im wondering if there is a bug with the attribute disabled in the s:div tag, since i didn't succe

Re: [s2] Collection based form tag question

2007-04-29 Thread Dave Newton
--- Zoran Avtarovski <[EMAIL PROTECTED]> wrote: > I'm trying to use a mix of a dynamic list a static > option for a select list and checkbox list but I need > some OGNL help. IIRC there are attributes for a single additional value; I don't think that extends to multiple options, though. The simpl

[s2] Collection based form tag question

2007-04-29 Thread Zoran Avtarovski
I'm trying to use a mix of a dynamic list a static option for a select list and checkbox list but I need some OGNL help. In s1 I would have the following: Default image No image This way I get my collection from the server (db, directory, etc) and I can add a couple of default values

RES: [S2] s:div tag question.

2007-04-26 Thread Alberto Chiang
e know any good tab component around to integrate with S2? Cheers, Alberto Chiang -Mensagem original- De: Alberto Chiang [mailto:[EMAIL PROTECTED] Enviada em: quinta-feira, 26 de abril de 2007 09:17 Para: user@struts.apache.org Assunto: [S2] s:div tag question. Hi all, I&#

Re: [S2] s:div tag question.

2007-04-26 Thread Dave Newton
--- Martin Gainty <[EMAIL PROTECTED]> wrote: > Im confused by your use of 2 different themes > (simple theme for TabbedPanel but ajax theme for the > div tag) If you stick with theme="ajax" what happens? > If you stick with theme="simple" what happens? The should not be theme="ajax" and dynamic

Re: [S2] s:div tag question.

2007-04-26 Thread Martin Gainty
--- Original Message - From: "Alberto Chiang" <[EMAIL PROTECTED]> To: Sent: Thursday, April 26, 2007 8:17 AM Subject: [S2] s:div tag question. Hi all, I'm currently using the tag whitin the tag , and im wondering if there is a bug with the attribute disabled in

[S2] s:div tag question.

2007-04-26 Thread Alberto Chiang
Hi all, I'm currently using the tag whitin the tag , and im wondering if there is a bug with the attribute disabled in the s:div tag, since i didn't succeed to disabled some tabs at al . Is this a bug or there is a work around on this? Code: A

Re: s2 newbie tag question: indexing specific elements of arrayList

2007-02-15 Thread Laurie Harper
or maybe At any rate, you need to use the 'value' attribute to specify the value :-) L. [EMAIL PROTECTED] wrote: I wondered what is the struts tag equivalent of this JSTL to retrieve the first element from an arrayList: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %>

RE: s2 newbie tag question: indexing specific elements of arrayList

2007-02-13 Thread jonathan . lister
> I wondered what is the struts tag equivalent of this JSTL to retrieve > the first element from an arrayList: > > <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> > scope="page" /> > scope="page" /> > > Where regionList is of type ArrayList > > Looking at the online guides I

Core Tag Question Struts 1.29

2006-12-20 Thread Jim Reynolds
Hello, I am refactoring some code, and ran into an error, I cannot quite figure out. I have the following line in my jsp page. I have an include at top of jsp page that includes a page of taglibs. <%@ include file="/includes/imports.jsp" %> That file has the core tag here: <%@ taglib uri="htt

Re: [s2] Simple Tag Question and

2006-12-01 Thread Don Brown
On 12/1/06, Mark Menard <[EMAIL PROTECTED]> wrote: On 12/1/06 12:01 PM, "Don Brown" <[EMAIL PROTECTED]> wrote: > Well, I had some free time (holding my new son to let mom get some > sleep) and figured everyone deserved at least a reply. Yay for > GMail's search. > > Anyways, cool, thanks for th

Re: [s2] Simple Tag Question and

2006-12-01 Thread Mark Menard
On 12/1/06 12:01 PM, "Don Brown" <[EMAIL PROTECTED]> wrote: > Well, I had some free time (holding my new son to let mom get some > sleep) and figured everyone deserved at least a reply. Yay for > GMail's search. > > Anyways, cool, thanks for the update. I don't know of a better tag, > but we ar

Re: [s2] Simple Tag Question and

2006-12-01 Thread Don Brown
Well, I had some free time (holding my new son to let mom get some sleep) and figured everyone deserved at least a reply. Yay for GMail's search. Anyways, cool, thanks for the update. I don't know of a better tag, but we are always open for a patch... :) Don On 12/1/06, Mark Menard <[EMAIL PR

Re: [s2] Simple Tag Question and

2006-12-01 Thread Mark Menard
On 12/1/06 3:21 AM, "Don Brown" <[EMAIL PROTECTED]> wrote: > > On 8/30/06, Mark Menard <[EMAIL PROTECTED]> wrote: >> Is this following possible? >> >> >> >> >> >> >> >> >> >> If it isn't how do you change the value of something on the value stack once >> you are either into a JSP o

Re: [s2] Simple Tag Question and

2006-12-01 Thread Don Brown
Why do you need to modify? What about just pushing something else that effectively overrides the existing value? Don On 8/30/06, Mark Menard <[EMAIL PROTECTED]> wrote: Is this following possible? If it isn't how do you change the value of something on the value stack once you

[s2] Simple Tag Question and

2006-08-30 Thread Mark Menard
Is this following possible? If it isn't how do you change the value of something on the value stack once you are either into a JSP or in a FreeMarker template? I have been struggling with this for days now. I know it's got to be something really really really stupidly simple, but

Re: Custom tag question

2006-04-11 Thread [EMAIL PROTECTED]
nt: Mon, 10 Apr 2006 18:26:30 -0400 Subject: Custom tag question > Hi, > > I have a question pertaining intregrating a custom tags with a struts > tag. I want to know if there exists a "best practise" when trying to do > what I'm doing (other than not doing it

Re: Custom tag question

2006-04-10 Thread Aladin Alaily
... with tag files ... Aladin Alaily wrote: Hi Dave, I'm also wary of doing such a thing (hence why I'm posting here) because I would essentially be mimicking the servlet container's job. Now if it's possible to do what I'm trying to with files then I'll give that a shot instead. Thanks.

Re: Custom tag question

2006-04-10 Thread Aladin Alaily
Hi Dave, I'm also wary of doing such a thing (hence why I'm posting here) because I would essentially be mimicking the servlet container's job. Now if it's possible to do what I'm trying to with files then I'll give that a shot instead. Thanks. Aladin Dave Newton wrote: Aladin Alaily wr

Re: Custom tag question

2006-04-10 Thread Dave Newton
Aladin Alaily wrote: > Would you use a .tag to produce the effect described above? If you mean a JSP 2.0 custom tag written in JSP, then sure. I'd also be wary of using other custom tags inside a tag like that, although I guess I've never tried it. Dave

Custom tag question

2006-04-10 Thread Aladin Alaily
Hi, I have a question pertaining intregrating a custom tags with a struts tag. I want to know if there exists a "best practise" when trying to do what I'm doing (other than not doing it). I am trying to write a custom tag which wraps another tag in the following way: HTML Written: Desir

Re: Struts-EL Tag Question

2006-03-24 Thread Michael Jouravlev
http://struts.apache.org/struts-el/tagreference-struts-bean-el.html#bean:size Try "name" instead of "collection". On 3/24/06, Kalcevich, Daniel <[EMAIL PROTECTED]> wrote: > I have a collection in the Request called "processes" which is an array > list of a Transfer Object I use in my application.

Struts-EL Tag Question

2006-03-24 Thread Kalcevich, Daniel
I have a collection in the Request called "processes" which is an array list of a Transfer Object I use in my application. I am trying to make the following call from my JSP: I am getting the following error: javax.servlet.jsp.JspException: No valid collection specified for size tag

RE: Logic Tag Question

2006-03-06 Thread Shasirekha Engala
is the timeZone membervariable of timeZones? then replace the logic:equal tag with the following -Original Message- From: Kalcevich, Daniel [mailto:[EMAIL PROTECTED] Sent: Monday, March 06, 2006 8:41 PM To: Struts Users Mailing List Subject: RE: Logic Tag Question Laurie, I

RE: Logic Tag Question

2006-03-06 Thread Kalcevich, Daniel
, March 04, 2006 6:01 PM To: user@struts.apache.org Subject: Re: Logic Tag Question Change "${tz}.value" to "${tz.value}". Kalcevich, Daniel wrote: > The is fine. I know that works. The problem is with the > logic:equal comparion. > &

Re: Logic Tag Question

2006-03-04 Thread Laurie Harper
om the "tz" variable? -Original Message- From: Michael Jouravlev [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 1:29 PM To: Struts Users Mailing List Subject: Re: Logic Tag Question On 3/3/06, Kalcevich, Daniel <[EMAIL PROTECTED]> wrote: But the problem is that the &

RE: Logic Tag Question

2006-03-03 Thread Kalcevich, Daniel
lto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 1:29 PM To: Struts Users Mailing List Subject: Re: Logic Tag Question On 3/3/06, Kalcevich, Daniel <[EMAIL PROTECTED]> wrote: > > But the problem is that the "value" that I want to compare in the > logic:equal tag is really

RE: Logic Tag Question

2006-03-03 Thread [EMAIL PROTECTED]
wouldn't that be: Bryan LaPlante -- Original Message --- From: "Kalcevich, Daniel" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Fri, 3 Mar 2006 13:17:02 -0800 Subject: RE: Logic Tag Question > OK, I am now able to get the itera

Re: Logic Tag Question

2006-03-03 Thread Michael Jouravlev
On 3/3/06, Kalcevich, Daniel <[EMAIL PROTECTED]> wrote: > > But the problem is that the "value" that I want to compare in the > logic:equal tag is really ${tz}.value. But how can I set the value to > the "getValue()" from the "tz" variable. None of these works? Michael. ---

RE: Logic Tag Question

2006-03-03 Thread Kalcevich, Daniel
lue to the "getValue()" from the "tz" variable. Daniel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 12:52 PM To: Struts Users Mailing List Subject: Re: Logic Tag Question If I am not mistaking you will use either

Re: Logic Tag Question

2006-03-03 Thread [EMAIL PROTECTED]
the forms value by saying //do something Bryan LaPlante -- Original Message --- From: "Kalcevich, Daniel" <[EMAIL PROTECTED]> To: user@struts.apache.org Sent: Fri, 3 Mar 2006 12:21:18 -0800 Subject: Logic Tag Question > I have the following:

Re: Logic Tag Question

2006-03-03 Thread Wendy Smoak
On 3/3/06, Kalcevich, Daniel <[EMAIL PROTECTED]> wrote: I have the following: > - An ArrayList in the ServletContext called > "timezones" > > - A Form Bean in the request scope called "accountProfileForm" > > I want to be able to loop through the values in the "timezones" > attri

Logic Tag Question

2006-03-03 Thread Kalcevich, Daniel
I have the following: - An ArrayList in the ServletContext called "timezones" - A Form Bean in the request scope called "accountProfileForm" I want to be able to loop through the values in the "timezones" attribute and compate the "value" to the value of the "timeZone" in

Logic Tag Question

2006-02-10 Thread Kalcevich, Daniel
Everyone, I have two modules defined (/ & /app). I want to use the logic tag (either redirect or forward) to take me to the URL "/myApp/index.htm" when I enter in just "/myApp/". I have defined an action within the "/" module Struts Config File that is called "/index" and forwards to a Tiles

Re: tag question

2006-01-11 Thread Rick Reumann
Ashish Kulkarni wrote the following on 1/11/2006 11:08 AM: Hi I am a bit confused about using and tag I hate that optionsCollection tag:) I think the naming of the attributes is confusing. I prefer using html:select and using html:option withing a JSTL forEach loop. Slightly more verbose t

tag question

2006-01-11 Thread Ashish Kulkarni
Hi I am a bit confused about using and tag Suppose i have defined following in struts-config.xml file I have a bean where in i have get and set method for name and desctiption, suppose the bean is called MyBean and viewNames vector is populated by MyBean class How do i define it in jsp page

Re: nested c:forEach tag question

2005-12-06 Thread Laurie Harper
Scott Vickery wrote: I am having a tough time getting my head around using tags in some situations. This works (the forms tag is part of common controls, and is not part of the problem):

Re: nested c:forEach tag question

2005-12-06 Thread Yujun Liang
The problem is The logic tag doesn't support JSTL ${ftr.value} as a property. Regards On 12/7/05, Scott Vickery <[EMAIL PROTECTED]> wrote: > > I am having a tough time getting my head around using tags in some > situations. > > > > This works (the forms tag is part of common controls, and is not

nested c:forEach tag question

2005-12-06 Thread Scott Vickery
I am having a tough time getting my head around using tags in some situations. This works (the forms tag is part of common controls, and is not part of the problem):

Re: tag question about identifying a specific item in acollection

2005-10-01 Thread Murray Collingwood
Sounds like you need some documentation... try this: http://struts.apache.org/userGuide/struts-logic.html This tells you how to use those tag should identify the attribute name of the collection and assign a new attribute name to be used for accessing each item within the collection. Insi

Re: tag question about identifying a specific item in acollection

2005-10-01 Thread Kishore Senji
If you are using property on the logic:equal, you also have to supply the "name" attribute. Define an "id" on the logic:iterate and use it as the "name" on the logic:equal. On 10/1/05, Mick Knutson <[EMAIL PROTECTED]> wrote: > > I am not having luck here. > > I have a collection of cards (Card cla

Re: tag question about identifying a specific item in acollection

2005-10-01 Thread Mick Knutson
I am not having luck here. I have a collection of cards (Card class) that I am iterating through. Then, I also have a form that has a cardValidatorForm (DynaForm). cardForm.cardNumber is going to be equal to one of the card.cardNumber's When I create the logic tag like you stated: ... I get an

Re: tag question about identifying a specific item in acollection

2005-09-29 Thread Mick Knutson
Thanks so much! Murray Collingwood wrote: > Will the following work? > > > > > > > > > > > > > > Kind regards > mc > > > On 29 Sep 2005 at 15:41, Mick Knutson wrote: > > > I have a collection of cards. and I want to create a table fo thos > > cards, but if I get to a card

Re: tag question about identifying a specific item in a collection

2005-09-29 Thread Murray Collingwood
Will the following work? Kind regards mc On 29 Sep 2005 at 15:41, Mick Knutson wrote: > I have a collection of cards. and I want to create a table fo thos > cards, but if I get to a card where foo=bar, then I want to paint that > row as a form with updateable fields a

tag question about identifying a specific item in a collection

2005-09-29 Thread Mick Knutson
I have a collection of cards. and I want to create a table fo thos cards, but if I get to a card where foo=bar, then I want to paint that row as a form with updateable fields and 1 submit for just that row. How would I do this please? -- Thanks Mick Knutson (925) 951-4126 HP Consulting Services S

Re: Very Simple Struts HTML tag question

2005-09-21 Thread Randy Shepherd
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 bad randy.. google before you speak. On Sep 21, 2005, at 12:04 PM, Randy Shepherd wrote: I realize that it is non-standard HTML, but I was wondering if the Struts HTML input tag has an equivalent to the autocomplete parameter. Non-Standard HTML:

Very Simple Struts HTML tag question

2005-09-21 Thread Randy Shepherd
I realize that it is non-standard HTML, but I was wondering if the Struts HTML input tag has an equivalent to the autocomplete parameter. Non-Standard HTML: size="22" autocomplete="off"> Struts HTML ??=?? /> Thanks in advance! Randy ---

Re: html:img tag question

2005-06-06 Thread Dave Newton
Scott Purcell wrote: But today, I realized that a lot of sites use a fully qualified: http://mysite/mycontext/images/images/spacer.gif";> for their sites. I would like to be able to do that. Why? Seems unnecessary if you're linking to your own site. If you're linking off-site, there's no go

Re: html:img tag question

2005-06-06 Thread Aleksandar Matijaca
I believe that doing absolute addressing as you are proposing, is probably against all "best practices" of HTML design. Do some research on best-practices of HTML before doing this... Cheers, Alex. On 6/6/05, Scott Purcell <[EMAIL PROTECTED]> wrote: > > Hello, > > I have build a site using

html:img tag question

2005-06-06 Thread Scott Purcell
Hello, I have build a site using the struts framework with a heavy use of the html:img tag like so. And it does a great job at including the context of the application and therefore giving me a page source of such: And all is happy. But today, I realized that a lot of sites use a fully q

RE: Struts html tag question

2005-02-08 Thread Slattery, Tim - BLS
> How to show a basic struts text box > and a checkbox? -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Struts html tag question

2005-02-08 Thread Sab
How to show a basic struts text box and a checkbox? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JSTL Tag Question

2004-12-30 Thread Andrew Hill
Ok, Ive managed to get hold of my printout of the JSTL spec (didnt have it last night). The tags "xml" attribute can point at either a string or a reader. I think you could probably just get a reader in a scriptlet (or write a simple custom tag to do it), refer to it from the , and another sc

Re: JSTL Tag Question

2004-12-30 Thread Seth Milder
Andrew Hill wrote: parse an xml file from the local filesystem Yes, this is correct. It seems to want to do this over HTTP. Local paths do not seem to work, unless I am missing something, which is entirely possible. The users local filesystem, or the servers? In the former case no (you would

Re: JSTL Tag Question

2004-12-30 Thread Andrew Hill
parse an xml file from the local filesystem The users local filesystem, or the servers? In the former case no (you would need to get them to uplaod it first). In the later case (which I guess is what you mean as it has a leading /)... not sure. :-( "We want to stand upon our own feet and look

JSTL Tag Question

2004-12-30 Thread Seth Milder
Hi, I am new to using the JSTL x tags and I was wondering if there was a way to parse an xml file from the local filesystem without having to go through HTTP first. I'd like to be able to do something like this: Is there a way to do this? Thanks for your help! -- Seth Milder Department of

POSSIBLE OT: localised hashtable custom tag question

2004-08-01 Thread Bryan Hunt
Ok here's the scenario My (opensource) application is going to be available in the users language. All my struts localisation stuff is working fine, all the labels and stuff are stored in property files etc. I am using hibernate for persistance. JSTL does not allow you to call functions on obj

Re: Tag question (JSP organization)

2004-07-26 Thread Erik Weber
ng to make it as usable a possible. Neway, thanks for the patience Erik. Would you let me in on a secret? How could I view the thread on this topic? -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 12:26 PM To: Struts Users Mailing List Subje

RE: Tag question (JSP organization)

2004-07-26 Thread Raghuram Kanadam
ssage- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 12:26 PM To: Struts Users Mailing List Subject: Re: Tag question (JSP organization) Raghuram, the thread was started by me ;) and was entitled "Prepopulating forms". It was a long thread and might give you so

Re: Tag question (JSP organization)

2004-07-25 Thread Erik Weber
e would be the expert, not me. His posts are a little over my head at this point. I curse and scream until my screens show up with what I want on them, and then I breathe a big sigh of relief, just like anyone else. ;) Erik -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] S

RE: Tag question (JSP organization)

2004-07-25 Thread Raghuram Kanadam
004 11:54 AM To: Struts Users Mailing List Subject: Re: Tag question (JSP organization) Well, during an earlier thread on this topic, one of the Struts contributors (I think he was a contributor -- can't remember who it was) posted that, despite how many Struts developers use the same form

Re: Tag question (JSP organization)

2004-07-25 Thread Erik Weber
back to the page containing it. :) -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 11:23 AM To: Struts Users Mailing List Subject: Re: Tag question (JSP organization) I'm sorry Raghuram, I'm not able to understand your question. Could y

RE: Tag question (JSP organization)

2004-07-25 Thread Raghuram Kanadam
Subject: Re: Tag question (JSP organization) I'm sorry Raghuram, I'm not able to understand your question. Could you elaborate? Thanks, Erik Raghuram Kanadam wrote: >Erik, > If prepopulation is an issue we are dealing with quit often, why cant we have > a method sim

Re: Tag question (JSP organization)

2004-07-25 Thread Erik Weber
ml:form is called? -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Friday, July 23, 2004 2:17 AM To: Struts Users Mailing List Subject: RE: Tag question (JSP organization) -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Thursday, July 22, 20

RE: Tag question (JSP organization)

2004-07-25 Thread Raghuram Kanadam
: Struts Users Mailing List Subject: RE: Tag question (JSP organization) > -Original Message- > From: Erik Weber [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 22, 2004 1:25 PM > To: Struts Users Mailing List > Subject: Re: Tag question (JSP organization) > > > H

RE: Tag question (JSP organization)

2004-07-23 Thread Raghuram Kanadam
Thanks a zillion. Will take time to think it through though. The weekend must be a good time for this! :) Hail Erik :O -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Friday, July 23, 2004 12:13 AM To: Struts Users Mailing List Subject: Re: Tag question (JSP

RE: Tag question (JSP organization)

2004-07-22 Thread Jim Barrows
> -Original Message- > From: Erik Weber [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 22, 2004 1:25 PM > To: Struts Users Mailing List > Subject: Re: Tag question (JSP organization) > > > Haha! Thanks Jim for your usual wit and insight. I will take > y

Re: Tag question (JSP organization)

2004-07-22 Thread Erik Weber
ul for the Java community at large. I think we are collectively heading for great things. I just don't want us to program ourselves out of a job! Jim Barrows wrote: -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Thursday, July 22, 2004 11:43 AM To: Struts Users M

RE: Tag question (JSP organization)

2004-07-22 Thread Jim Barrows
> -Original Message- > From: Erik Weber [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 22, 2004 11:43 AM > To: Struts Users Mailing List > Subject: Re: Tag question (JSP organization) > > > Sure, Raghuram. > > Caution: long post! > > >

Re: Tag question (JSP organization)

2004-07-22 Thread Erik Weber
hills, having always thought they were a myth. The manager will have to call in a stack trace expert, who will, at the rate of $700 per hour, begin to explain to all the remaining developers what a "stack" is . . . But seriously, hope this helps a newbie or two. Criticism is al

RE: Tag question

2004-07-22 Thread Raghuram Kanadam
If you had the time Erik would you explain your method of arranging JSPs by the actor, seemed a beautiful approach. -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Thursday, July 22, 2004 1:16 AM To: Struts Users Mailing List Subject: Re: Tag question Sorry if this

Re: Tag question

2004-07-21 Thread Erik Weber
om: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 21, 2004 11:32 AM To: Struts Users Mailing List Subject: Re: Tag question Sorry, I should have explained better what I am doing. My controller Servlet is mapped to /services/* All requests for JSP pages go through the controller, via action map

RE: Tag question

2004-07-21 Thread Jim Barrows
> -Original Message- > From: Erik Weber [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 21, 2004 11:32 AM > To: Struts Users Mailing List > Subject: Re: Tag question > > > Sorry, I should have explained better what I am doing. > > My controller

  1   2   >