Re: JSTL toUpperCase

2007-01-24 Thread Bob Arnott
; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd; ... /web-app -- Bob Arnott - To unsubscribe, e-mail: [EMAIL

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

2005-11-29 Thread Bob Arnott
value=%=value.toString()% / Alternatively, use an action to populate the form bean. Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, 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
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-mail: [EMAIL

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

2005-09-16 Thread Bob Arnott
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. Cheers, -- Bob Arnott

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 Boolean... -- Bob Arnott

RE: javascript

2005-07-06 Thread Bob Arnott
something like: bean:define id=onClickUrljavascript:location.href='html:rewrite page=/portfoliomgmt /'/bean:define html:button property=Create value=Create styleClass=NPIButton onclick=%=onClickUrl% / Cheers, -- Bob Arnott

RE: javascript

2005-07-06 Thread Bob Arnott
, then use: html:rewrite action=/portfoliomgmt / 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: trouble passing multiple parameters using html:link

2005-06-23 Thread Bob Arnott
=storeInfo scope=pageClick Here/html:link See - http://struts.apache.org/userGuide/struts-html.html#link# Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

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

2005-06-07 Thread Bob Arnott
/table page-left.jsp and page-right.jsp are just the content of the page you want to display. I hope this helps. Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Tiles woes

2005-06-02 Thread Bob Arnott
/ /definition Any help anyone can give me with this would be much appreciated. Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: JSTL fmt:message with modules

2005-05-26 Thread Bob Arnott
=${Globals.MESSAGE_KEY} / 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]

RE: JSTL fmt:message with modules

2005-05-26 Thread Bob Arnott
bundle, I'm using JSTL not the Struts bean taglib. I want to know how the fmt:message / tag will pick up the resource bundle key under Globals.MESSAGE_KEY for each module while in a tiles template. Cheers, -- Bob Arnott Software Developer Autonomy Systems Ltd. Cambridge Business Park Cowley

JSTL fmt:message with modules

2005-05-25 Thread Bob Arnott
for modules...? Can anyone shed some light on how I get this to work...? Thanks, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Please wait page

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

Re: status messages in html:link tag

2005-04-01 Thread Bob Arnott
=string(%= ... %) isn't. Cheers, -- Bob Arnott Software Developer Autonomy Systems Ltd. Cambridge Business Park Cowley Road Cambridge CB4 0WZ T: +44 (0) 1223 448 000 F: +44 (0) 1223 448 001 http://www.aungate.com/ - To unsubscribe, e

Re: status messages in html:link tag

2005-03-31 Thread Bob Arnott
something like this - bean:define id=rollOverText type=java.lang.Stringbean:message key=my.key //bean:define html:link href=http://www.google.com; target=_blank onmouseover=window.status='%=rollOverText%'; return true;... -- Bob Arnott

RE: Placing message beans inside other tages

2005-03-10 Thread Bob Arnott
://struts.apache.org/userGuide/struts-html.html#img html:img srcKey=my.image / Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to handle Dates?

2005-02-25 Thread Bob Arnott
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 Cheers, -- Bob Arnott