Re: JSTL toUpperCase

2007-01-24 Thread Bob Arnott
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";> ... -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: how to pass value in html:text from action

2005-11-29 Thread Bob Arnott
Stanislav wrote: [snipped...] You can't embed tags within tags... Try something like: Alternatively, use an action to populate the form bean. Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to escape a string on a description field

2005-10-24 Thread Bob Arnott
, especially public static String escapeSql(String str). Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Serializing Form-Beans with XML

2005-10-17 Thread Bob Arnott
ester rules in a way that can be customized on a per type manner in the same way that the BeanInfo mechanism can be used to customize the default introspection on a java object." Cheers, -- Bob Arnott - To unsubscribe, e-ma

Re: [OT] SCM stories (war? horror?)

2005-09-16 Thread Bob Arnott
ge pole it doesn't integrate very well with IDE's or Cruise Control etc and is a general pain in the arse. VSS, are you being serious...? Out of those three I'd take CVS every time, although you may want to look at Subversion as well

RE: basics of struts

2005-09-05 Thread Bob Arnott
Ankit Pancholi wrote: > Hey thanks a lot. Changing classpath to servlet.jar helped. Can you > tell me the argument type for check box. I tried Boolean considering > it as on or off but it didn't work. Try "boolean", not &quo

RE: javascript

2005-07-06 Thread Bob Arnott
> but the problem is .do missing ... If you want the .do bit to automatically be appended for you, then use: http://struts.apache.org/userGuide/struts-html.html#rewrite -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: javascript

2005-07-06 Thread Bob Arnott
.. Off the top of my head try something like: javascript:location.href='' Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: trouble passing multiple parameters using

2005-06-23 Thread Bob Arnott
quot;storeName",param2); >pageContext.setAttribute("storeInfo", params); > %> > > paramName="storeInfo" scope="page"> Click Here > You want to specify the Map under the attribute &qu

RE: Tiles: How to nest attributes! Is it possible?

2005-06-07 Thread Bob Arnott
glib uri="http://struts.apache.org/tags-html-el"; prefix="html" %> <%@ taglib uri="http://struts.apache.org/tags-tiles-el"; prefix="tiles" %> ;" /> ;" />

Tiles woes

2005-06-02 Thread Bob Arnott
ontains what I expect, i.e. /tiles/left-right-split.jsp, but it's just not being displayed. Am I totally barking up the wrong tree with this? Can you build pages with tiles like this, or are you supposed to o it via multiple definitions like: Any help anyone can give me

RE: JSTL fmt:message with modules

2005-05-26 Thread Bob Arnott
> obviously, or there will be nothing to display. Here is > an example of displaying the messages: > > > > > > > > > Anyone else?Martin I'm not trying to display a different internationalised bundle, I'm using JSTL not the Struts bean taglib. I want to know how the tag

RE: JSTL fmt:message with modules

2005-05-26 Thread Bob Arnott
on struts-el tags. Now I probably didn't make myself clear in my last post, does Struts do something so that the tag works in a similar way, thus you can do: So that it doesn't matter what module you are in you'll get the right bundle...? Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

JSTL fmt:message with modules

2005-05-25 Thread Bob Arnott
can put a context param in the web.xml: javax.servlet.jsp.jstl.fmt.localizationContext ApplicationResources But Shirley this wont work for modules...? Can anyone shed some light on how I get this to work...? Thanks, -- Bob Arnott

Re: Please wait page

2005-04-07 Thread Bob Arnott
tion --> results page Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: status messages in tag

2005-04-01 Thread Bob Arnott
e; http://www.google.com"; target="_blank" onmouseover="<%=rollOverText%>">... Is what you want (I think)... You can't mix the <%= %> bit inside a string within a tag attribute, if you get me. So attr="<%= ... %>" is okay, but att

Re: status messages in tag

2005-03-31 Thread Bob Arnott
;%>';return true"> Off the top of my head, you could try something like this - http://www.google.com"; target="_blank" onmouseover="window.status='<%=rollOverText%>'; return true;">... -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Which stream to use for a new suite of applications

2005-03-21 Thread Bob Arnott
to group form items, while another uses tags with border styles set. Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Placing message beans inside other tages

2005-03-10 Thread Bob Arnott
sing the > tag. > > I thought that this should work > > > > But i get the as string > and not as a the message itself. Use the srcKey attribute on the tag to specify the property in your resource bundle that you want to use: http://struts.apache.org/userGuide

RE: How to handle Dates?

2005-02-25 Thread Bob Arnott
object ? I wrote my own tag to format dates before I came across the Jakarta Taglibs. You could try the Date/Time taglib if you don't want to use JSTL. http://jakarta.apache.org/taglibs/doc/datetime-doc/intro.html