EL Tag Libraries

2004-03-24 Thread Pat Quinn
Hi Guys, I have an action form with a get method (i.e. getValue(String)) which takes a string value, its working fine when i render the data in a text field. E.g. c:set var=uniqueKey c:out value=${CustomerTO.id}/-c:out value=${CustomerTO.orderNo}/ /c:set html-el:text name=myForm

RE: EL Tag Libraries

2004-03-24 Thread Pat Quinn
/ c:set var=hello c:out value=${testVar} /-c:out value=${testVar1} / /c:set c:out value=${hello} / Thanks -- pady [EMAIL PROTECTED] -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 7:11 AM To: [EMAIL PROTECTED] Subject: EL Tag Libraries Hi Guys, I

RE: data transfer from Action class to jsp page

2004-02-25 Thread Pat Quinn
You should place it in the request scope if the data is required for the next view only You should avoid placing such objects in the session as this will remain in memory until the users HttpSession expires. -Original Message- From: Pradeep, PK [mailto:[EMAIL PROTECTED] Sent: 25

Preparing Multiple DynaValidatorForm’s with one action

2003-10-06 Thread Pat Quinn
I currently have an action (Action A) which is associated with Action_Form_A ( i.e. org.apache.struts.validator.DynaValidatorForm) i want to forward to another tile definition which requires Action_Form_B. I want to initialise a List in Action_Form_B how can i do this as the action i'm

Re: Preparing Multiple DynaValidatorForm?s with one action

2003-10-06 Thread Pat Quinn
that on success must forward to another action mapping with a completely different form, I use a re-direct. Of course it drops all the data in-between but you're better off in the long run. Adam On 10/06/2003 06:09 PM Pat Quinn wrote: I currently have an action (Action A) which is associated

DynaValidatorActionForm Setting Properties

2003-09-29 Thread Pat Quinn
I have an Action to prepare a JSP view which uses a DynaValidatorActionForm. When i try to set a Form property i get a NullPointerException my source is as follows: - Struts-Config.xml - form-bean name=MyForm type=org.apache.struts.action.DynaValidatorActionForm

Re: DynaValidatorActionForm Setting Properties

2003-09-29 Thread Pat Quinn
could try naming your class with an initial capitalized letter. Secondly, does the exception from the inbound form have a message? Regards Adam On 09/29/2003 01:35 PM Pat Quinn wrote: I have an Action to prepare a JSP view which uses a DynaValidatorActionForm. When i try to set a Form property i get

Jasper Pre-Compiling JSPs with the same name

2003-09-26 Thread Pat Quinn
Hi, I have JSPs in seperate folders with the same name and when i try to precompile them (Using ANT) i get a duplicate class name error... as you'd expect when i pass in one class package name e.g. jasper package=com.mycompany.servlets uriroot=jsps

Re: Jasper Pre-Compiling JSPs with the same name

2003-09-26 Thread Pat Quinn
Users Mailing List [EMAIL PROTECTED] Subject: Re: Jasper Pre-Compiling JSPs with the same name Date: Fri, 26 Sep 2003 12:08:35 -0400 Pat Quinn wrote: Hi, I have JSPs in seperate folders with the same name and when i try to precompile them (Using ANT) i get a duplicate class name error... as you'd

Re: Template Method Design

2003-09-18 Thread Pat Quinn
Take a look at Chapter 10 - Exception Handling in Programming Jakarta Struts by chuck cavaness.. i think you'll find this very helpful. I've implement this with Action but ill soon need to do the same for Dispatch Action too... has anyone done likewise for Dispatch and other such actions?

Global Forwards Request Attributes

2003-09-16 Thread Pat Quinn
I have a struts action which sets a String value as an attribute in the request scope i then redirect to a global forward. But the value never appears in my jsp i'm using the c:out/ tag lib. Any ideas what i could be doing wrong here or do global forwards support request attribute population??

html:link/ URL Parameters

2003-09-11 Thread Pat Quinn
Hi Guys, I trying to use the html:link/ tag library with dynamic url parameters e.g (which doesn't work). html:link action=/viewOrder.do?orderNo=c:out value=${order.ponum}/View Order/html:link How should i do this with out using the standard HTML Href tag?

Re: html:link/ URL Parameters

2003-09-11 Thread Pat Quinn
sophisticated. hth, .V Pat Quinn wrote: Hi Guys, I trying to use the html:link/ tag library with dynamic url parameters e.g (which doesn't work). html:link action=/viewOrder.do?orderNo=c:out value=${order.ponum}/View Order/html:link How should i do this with out using the standard HTML Href tag

Setting a Welcome File + Tiles + PreCompiled JSP's

2003-08-21 Thread Pat Quinn
I'm using tiles and i know i can't set the welcomefile/ attribute in web.xml to a tile definition or a struts action url. I'm also precompiling all my JSP's so i can't assign it to a JSP... i was thinking about assign it to a html file and then onLoad i could redirect to my logon action url...

RE: [OT] Rendering Large ResultSet - Value List Handler Design Pattern

2003-08-14 Thread Pat Quinn
where do you keep the initial resultset? Or do you execute the query each time the user requests to page? What would be nice if i could execute an sql statement which would give me a sub set of the results as contolled by a start and end position i specify e.g. Select code, desc from products

[OT] Rendering Large ResultSet - Value List Handler Design Pattern

2003-08-14 Thread Pat Quinn
I have a requirement to cater for a large number of results returned to the presentation tier. I've taken a quick look into the Value List Handler Design pattern (http://java.sun.com/blueprints/corej2eepatterns/Patterns/ValueListHandler.html). I do agree it offers some advantages but in my

Re: [OT] Rendering Large ResultSet - Value List Handler Design Pattern

2003-08-14 Thread Pat Quinn
ResultSet - Value List Handler Design Pattern Date: Tue, 12 Aug 2003 13:06:59 -0400 Pat Quinn wrote: where do you keep the initial resultset? Or do you execute the query each time the user requests to page? What would be nice if i could execute an sql statement which would give me a sub set

RE: Dynamic Tree Menus --- HELP!!!

2003-08-01 Thread Pat Quinn
-menu.jar or build struts-menu from CVS. HTH, Matt -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 9:47 AM To: [EMAIL PROTECTED] Subject: RE: Dynamic Tree Menus --- HELP!!! I appreciate your kind offer my details are as follows: I've broken it down

Dynamic Html Tree Menus - Java Beans.

2003-07-31 Thread Pat Quinn
I'm looking for a tag library to aid the rendering of a Tree Menu using session/request stored objects. I want to included the menu data as a Java Bean in HttpSession for each user and then use tag libs in my JSP's. I've looked into the StrutsMenu Offering for Dynamic Menus but it loads menu

Re: Dynamic Tree Menus --- HELP!!!

2003-07-31 Thread Pat Quinn
it with my own custom tag library From: Pat Quinn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Dynamic Html Tree Menus - Java Beans. Date: Thu, 31 Jul 2003 10:22:51 +0100 I'm looking for a tag library to aid the rendering of a Tree Menu

RE: Dynamic Tree Menus --- HELP!!!

2003-07-31 Thread Pat Quinn
-Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 9:20 AM To: [EMAIL PROTECTED] Subject: Re: Dynamic Tree Menus --- HELP!!! Is anyone out there working with dynamic HTML trees at the moment (i.e. displaying data loaded from a data base) as i'm pulling my

RE: Dynamic Tree Menus --- HELP!!!

2003-07-31 Thread Pat Quinn
-Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 9:20 AM To: [EMAIL PROTECTED] Subject: Re: Dynamic Tree Menus --- HELP!!! Is anyone out there working with dynamic HTML trees at the moment (i.e. displaying data loaded from a data base) as i'm pulling my

[OT] HTML Manipulation of Dynamic Tree Menus

2003-07-23 Thread Pat Quinn
I'm looking for a good example of HTML manipulation of dynamic tree menus i.e. adding nodes dynamically, reshuffling of nodes, deletion of nodes etc. _ MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*.

Struts Expandable Trees

2003-07-22 Thread Pat Quinn
I'm currently developing a prototype using struts tiles for my layout definition. I want to have a dynamic html tree (i.e. http://raibledesigns.com/struts-menu/dhtmlExpandable.jsp) on the left hand side, this menu will control the body content. I'm trying to avoid using frames as i understand

Struts Expandable Trees

2003-07-22 Thread Pat Quinn
I'm currently developing a prototype using struts tiles for my layout definition. I want to have a dynamic html tree (i.e. http://raibledesigns.com/struts-menu/dhtmlExpandable.jsp) on the left hand side, this menu will control the body content. I'm trying to avoid using frames and javascript

Re: [OT] Precompiling JSP with JSTL tag Libs

2003-07-21 Thread Pat Quinn
, Pat Quinn wrote: Date: Fri, 18 Jul 2003 16:41:33 +0100 From: Pat Quinn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [OT] Precompiling JSP with JSTL tag Libs Sorry guys this is not a struts question but i'm hoping someone on here

[OT] Precompiling JSP with JSTL tag Libs

2003-07-18 Thread Pat Quinn
Sorry guys this is not a struts question but i'm hoping someone on here has had this problem before ive got an ANT task to precompile my jsp's everything worked fine until i decided to upgrade to use JSTL tag libs not i get the following error, [echo] Precompiling JSPS 2003-07-18 04:27:26

[Menus Trees in Struts]

2003-07-16 Thread Pat Quinn
Hi Guys, I'm sorry if this question has been asked hundreds of times before but as things are changing all the time i wondering if anyone has come across a good menu/tree tab library that i could use with java beans CSS to aid the rendering of the menu items? Its doesn't necessary have to be

Extending RequestProcessor with Tiles

2003-07-15 Thread Pat Quinn
I have extended the org.apache.struts.action.RequestProcessor (i.e. processPreprocess() method) then i continued to implement tiles i.e. defining the plugin in my struts-config.xml. Now on startup i get the following error: TilesPlugin : Specified RequestProcessor not compatible with

[OT]Struts ISP Hosting

2003-06-23 Thread Pat Quinn
Hey Guys, I'm about to embark on my first every attempt at deploying a struts website. I've just signed up http://www.cqhost.com as my ISP. They currently deploy on resin 2.1.4 and JDK 1.3 but i've developed using Tomcat 4.0.3 and JDK 1.4 and Struts 1.1RC1. My account is not active at the

[OT] - Lucene Intergration with Struts/Struts Jobs

2003-06-12 Thread Pat Quinn
Hey guys, I know its not really a struts question but is anyone out there using Jakarta Lucene with struts. I've started looking into it to enable full text searching of product catalogues rather than screwing around with SQL Like statements. Any Comments?? Anyone know where i might find some

RE: [OT] - Lucene Intergration with Struts/Struts Jobs

2003-06-12 Thread Pat Quinn
! Brandon Goodin -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 6:11 PM To: [EMAIL PROTECTED] Subject: [OT] - Lucene Intergration with Struts/Struts Jobs Hey guys, I know its not really a struts question but is anyone out there using Jakarta Lucene

[Tiles Beginner Question] Href Tile Definitions

2003-06-08 Thread Pat Quinn
I've successfully got tiles up and running... I do understand how i can use a tile definition as a struts forward for my actions but i'm looking to redirect to a tile definition using a href link. E.g. I have the following tile definition: definition name=my.home extends=default

[log4j]

2003-04-01 Thread Pat Quinn
Has anyone tried using log4j-1.2.7.jar with Struts _ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail - To

Catalogue Paging storing selected items

2003-03-25 Thread Pat Quinn
Hi Guys, I have a paging catalogue of items which all works fine but i'm wondering how do i store selected items across multiple pages?? As i move to another page should i store the select item keys in my session before displaying the next page??? Any ideas??

LookupDispatchAction + Paging with form submit

2003-03-25 Thread Pat Quinn
I have a LookupDispatchAction as follows: protected Map getKeyMethodMap() { Map map = new HashMap(); map.put(label.catalogue.find, doFind); map.put(label.catalogue.addtoCart, doAddToCart); map.put(label.paging, doPaging); return map; } I display my paging

[Design] User Customisable Views

2003-03-24 Thread Pat Quinn
Hi Guys, I have a requirement as follows: I want each user within my web app to be able to customise their views for individual screens independently, I want users to be able to customise attributes such as: · Turn on/off certain columns when displaying tabular data. · Customise

RE: [Design] User Customisable Views

2003-03-24 Thread Pat Quinn
, such as colours, you could handle it by generating on the fly (and caching) a css style sheet customised for that particular user.) -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED] Sent: Monday, 24 March 2003 17:21 To: [EMAIL PROTECTED] Subject: [Design] User Customisable Views Hi

Request Attributes + Iframe

2003-03-24 Thread Pat Quinn
Hi Guys, I've got an action which pops a java bean into the request... the action redirects to a jsp which in turn contains an Iframe... How do get a handle on the java bean from within the jsp which is the src for my iframe i don't want to send all the parameters in the url to the iFrame

[OT] Dynamic UI configuration

2003-03-18 Thread Pat Quinn
Hi Guys, I've got a java bean stored in the application context. This java bean stores UI color details for the entire website. I've tried doing something as follows in my jsp but it doesn't work: table width=100% border=0 bgColor='bean:write name=appConfigBean scope=application

RE: [OT] Dynamic UI configuration

2003-03-18 Thread Pat Quinn
? It should end up something like: table width=100% border=0 bgColor='#F0' or: table width=100% border=0 bgColor='azure' Quoting du Plessis, Corneil C [EMAIL PROTECTED]: Place the bean in the session as well. -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED] Sent: 18 March

logic:iterate/ 2D String Array without a Form Bean

2003-03-14 Thread Pat Quinn
Hi Guys, Sorry to ask such a basic question but i've searched the archive and failed to find a suitable answer to my question so heres my problem: I'm having some trouble getting logic:iterate/ to work with a 2D String array when using it without a form bean. Heres what i'm trying to do: I

Re: logic:iterate/ 2D String Array without a Form Bean

2003-03-14 Thread Pat Quinn
Sorry Guys, Please ignore this email i used nested logic tags to do what i wanted to do From: Pat Quinn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: logic:iterate/ 2D String Array without a Form Bean Date: Fri, 14 Mar 2003 14:06:36

Re: Data driven struts application

2003-03-14 Thread Pat Quinn
I spent some time thinking over this very topic. I finally went with the following approach: * I used JDBC (NO Entity Beans got bitten bably there in the past) to query the data base and then created value objects which i then inserted into Form beans. * For read only data access i used an

Re: Data driven struts application

2003-03-14 Thread Pat Quinn
List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Data driven struts application Date: Fri, 14 Mar 2003 08:24:58 -0800 (PST) On Fri, 14 Mar 2003, Pat Quinn wrote: Date: Fri, 14 Mar 2003 16:05:34 + From: Pat Quinn [EMAIL PROTECTED] Reply-To: Struts Users

Action Forwarding within Frames

2003-02-05 Thread Pat Quinn
Hi Guys, I have a jsp which contains two frames and each frame refers to its own action. I want to forward from the bottom frame to another jsp which contains no frames. How can i set the target for the next view... at the moment when i forward to a global forward it appear in the bottom

Re: Action Forwarding within Frames

2003-02-05 Thread Pat Quinn
, In bottom frame form tag place target=_top. Thanks Regards, Ashok.D - Original Message - From: Pat Quinn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 05, 2003 6:43 PM Subject: Action Forwarding within Frames Hi Guys, I have a jsp which contains two frames

Re: [OT] concurrent updates

2003-02-05 Thread Pat Quinn
I need to do something like this very soon... but haven't given it much thought I'm using Oracle 8i is there a way i query the RDMS for the datestamp when the record was last updated rather than storing it as an extra column in every table From: Anil Amarakoon [EMAIL PROTECTED]

Message Resource Bundle from an action

2003-02-03 Thread Pat Quinn
hi guys, Anyone know how i can access the message resource bundle from an action class?? Cheers Pat _ Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail

RE: Message Resource Bundle from an action

2003-02-03 Thread Pat Quinn
not read good books has no advantage over the man who cannot read them. - Mark Twain (1835-1910) -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 9:50 AM To: [EMAIL PROTECTED] Subject: Message Resource Bundle from an action hi guys

xdoclet struts

2003-02-03 Thread Pat Quinn
I was taking a quick read through the xdoclet documentation and noted it offers some support for struts. Is anyone out there using xdoclet with struts and if so what are the benefits and typical usages??? Cheers Pat _ The new

Href's and LookupDispatchActions

2003-01-29 Thread Pat Quinn
Hi guys, I have a href link which submits back to a LookupDispatchAction. When i submit the form using this approach my formBean doesn't contain client changes. What the best way to use a href but yet submit the form with client changes using Struts. Cheers, Pat

JSP under WEB-INF

2003-01-28 Thread Pat Quinn
Hi Guys, I've just moved all my JSP's into a folder under WEB-INF so i have something like this: WEB-INF\jsp\catalogue I've got some global forward defined as follows: global-forwards forward name=viewcatalogue path=WEB-INF\jsp\catalogue\maincatalogue.jsp redirect=true/

Re: JSP under WEB-INF

2003-01-28 Thread Pat Quinn
/catalogue/maincatalogue.jsp redirect=false/ /global-forwards -emmanuel --- Pat Quinn [EMAIL PROTECTED] a écrit : Hi Guys, I've just moved all my JSP's into a folder under WEB-INF so i have something like this: WEB-INF\jsp\catalogue I've got some global forward defined as follows

Design Patterns/Examples

2003-01-28 Thread Pat Quinn
Hi Guys, Any one know of some design patterns or examples i could use with struts. I want to access a database(Value Objects) allow the user to change the VO data, perform some business validation and update the database. I’d like some pointers also when working with form beans and vo object

LookupDispatchAction

2003-01-15 Thread Pat Quinn
Hi guys, I have a form with three submit buttons using the lookupDispatchAction approach. I want to add some href's for paging... so whats the best way to submit the paging request.. i will need all the form data on paging... in order to force an update in the event that the user has entered

RE: LookupDispatchAction

2003-01-15 Thread Pat Quinn
I'm also using the lookupDispatch action... is it possible to use HREF to submit a form using this approach... if so whats the cleanest way to do it please personally i try to avoid javascript and scriptlet code in my jsp's Any ideas guys From: Alvarado, Juan (c) [EMAIL

RE: LookupDispatchAction

2003-01-15 Thread Pat Quinn
: Pat Quinn [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 2:32 PM To: [EMAIL PROTECTED] Subject: RE: LookupDispatchAction I'm also using the lookupDispatch action... is it possible to use HREF to submit a form using this approach... if so whats the cleanest way to do it please

Paging using struts

2003-01-14 Thread Pat Quinn
Does anyone have a good example of Paging using struts?? _ The new MSN 8 is here: Try it free* for 2 months http://join.msn.com/?page=dept/dialup -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

LookupDispatchAction

2003-01-14 Thread Pat Quinn
Hi Guys, Can i submit a page using a html HREF (i.e. myLookupAction.do?offset=10) when using a LookupDispatchAction. Up until now i submitted the page using the following format: html:submit property=actionbean:message key='label.update'//html:submit Cheers Pat

RE: LookupDispatchAction

2003-01-14 Thread Pat Quinn
. -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 3:42 PM To: [EMAIL PROTECTED] Subject: LookupDispatchAction Hi Guys, Can i submit a page using a html HREF (i.e. myLookupAction.do?offset=10) when using a LookupDispatchAction. Up until now i

RE: LookupDispatchAction

2003-01-14 Thread Pat Quinn
I have a form with three submit buttons using the lookupDispatchAction approach. I want to add some href's for paging... so whats the best way to submit the paging request.. i will need all the form data too... in order to force an update in the event that the user has entered some data.

Custom Message Resources

2003-01-13 Thread Pat Quinn
Hi Guys, Has anyone ever extended the functionality as offered by the org.apache.struts.util.RequestUtils? I want to be able to substituted keywords in my messages as loaded from my properties file with values from the database. I got this up an running by extending the MessageReources and

Re: Custom Message Resources

2003-01-13 Thread Pat Quinn
so time to go home me thinks From: Pat Quinn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Custom Message Resources Date: Mon, 13 Jan 2003 19:52:23 + Hi Guys, Has anyone ever extended the functionality as offered

RE: Internationalisation and Database/EJB data

2002-12-17 Thread Pat Quinn
I've done something like this. i.e. i have extended the PropertyMessageResources etc. and add extra stuff to fetch data in the relevant locale depending on the browsers locale. It works a really well for me. From: Joe Barefoot [EMAIL PROTECTED] Reply-To: Struts Users Mailing List

Map-backed ActionForms

2002-12-11 Thread Pat Quinn
I'm using the Map-Backed action form approach as detailed here: http://jakarta.apache.org/struts/userGuide/building_controller.html#map_action_form_classes I have a form bean with a one instance of a Value Object(i.e.customersVO), this value object contain an ArrayList(i.e. CustomerDetails) of

Re: DynaForm example

2002-12-11 Thread Pat Quinn
If you look at my last posting i've detailed how i'm using a List-Backed action form... mapped-backed is very similar. From: Mark [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: DynaForm example Date: Wed, 11 Dec 2002 15:06:53 +0100

Re: Map-backed ActionForms

2002-12-11 Thread Pat Quinn
FormBean in my action class usually: MyForm theForm = (MyForm) form; But when i try to compile javac says 'no', is there something i'm missing or does javac hate me :)? On 11-12-2002 14:49, Pat Quinn [EMAIL PROTECTED] wrote: I'm using the Map-Backed action form approach as detailed here: http

Struts UML Diagrams

2002-12-11 Thread Pat Quinn
Hi guys, Does any one know where I might find the complete or partial UML diagrams of struts?? _ Protect your PC - get McAfee.com VirusScan Online http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 -- To unsubscribe,

Re: Struts UML Diagrams

2002-12-11 Thread Pat Quinn
2002 13:37:11 -0800 (PST) http://jakarta.apache.org/struts/resources/index.html --- Pat Quinn [EMAIL PROTECTED] wrote: Hi guys, Does any one know where I might find the complete or partial UML diagrams of struts?? _ Protect

Re: Struts UML Diagrams

2002-12-11 Thread Pat Quinn
dig a little...there's probably more than that... -james --- Pat Quinn [EMAIL PROTECTED] wrote: I've looked on there James but failed to find any... can you point me in the right direction please From: James Holmes [EMAIL PROTECTED] Reply-To: Struts Users Mailing List

Re: Struts UML Diagrams

2002-12-11 Thread Pat Quinn
Date: Wed, 11 Dec 2002 13:46:25 -0800 (PST) http://jakarta.apache.org/struts/resources/tutorials.html http://jakarta.apache.org/struts/resources/articles.html Gotta dig a little...there's probably more than that... -james --- Pat Quinn [EMAIL PROTECTED] wrote: I've looked on there James

Form Bean with Lists client updates

2002-12-10 Thread Pat Quinn
I have a form bean with an List(i.e. Lines) of Value Objects with the normal get/set method for the List only. Every thing works fine when i display the data to the client. I have some thing like this: - Form Bean - public class myForm extends ActionForm { private List lines =

Multiple Submit Buttons + Internationalisation

2002-12-09 Thread Pat Quinn
Multiple Submit Buttons + Internationalisation I have a jsp with three submit buttons (update, delete etc..) each with a value as loaded from the resource bundle: input type=submit name=Submit value=bean:message key='label.update'/ In my action class i do the following to identify which

Re: Multiple Submit Buttons + Internationalisation

2002-12-09 Thread Pat Quinn
Cheers guys for all the feedback I used the LookupDispatchAction approach. Personally i don't like using JavaScript so i try to stay well clear of it as much as i can. Cheers, Pat From: Gemes Tibor [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts

Re: begginer help

2002-12-09 Thread Pat Quinn
Check out the Admin Module of Tomcat 4.1 download the src version. Its developed using Struts. I found it a good reference to work from when i started out. From: David Rothschadl [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Struts User Mailing List [EMAIL PROTECTED] Subject: begginer

Re: Struts Form Beans Value Objects

2002-12-03 Thread Pat Quinn
a property header that contains your HeaderVO: html:text property=header.myProperty/ After submission, the VO in the form bean will contain the data entered by the user, without additional code. Hope it helps Patrice - Original Message - From: Pat Quinn [EMAIL PROTECTED] To: [EMAIL PROTECTED

DynaAction Form

2002-12-03 Thread Pat Quinn
Hi all, I have a java value object (i.e. MyVo) which i add the DynaAction Form Below. When i display my jsp it works fine using headerVO.firstName but when i submit the page to save user changes i get the following error: java.lang.IllegalArgumentException: No bean specified at

Struts Form Beans Value Objects

2002-12-02 Thread Pat Quinn
I have an EJB which returns me a HeaderVO (Value Object) inside this VO I have an Array List of LineVO's. As you'd except all my Value objects are Serializable. Ok now i want to display this data to my client so I will have a header html table and a lines html table. My header and lines both

Sending parameters to form beans

2002-09-11 Thread Pat Quinn
hi Guys I'm very new to the world of struts so please excuse me if this seems like a really stupid question. Ok my situation is as follows: I have an action to display some application information, I also have a form bean which fetches the data I want to display. The action takes a user name

RE: General Struts Question

2002-09-11 Thread Pat Quinn
Struts Good stuff. BTW ... do you coach the Toronto Maple Leafs. -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED]] Sent: September 11, 2002 2:25 PM To: [EMAIL PROTECTED] Subject: General Struts Question Does any know of any good books on struts that are available at the moment

RE: General Struts Question

2002-09-11 Thread Pat Quinn
) Subject: RE: General Struts Question STFW, dude. Don't expect us to do your homework for you. -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 2:25 PM Does any know of any good books on struts that are available at the moment... or websites

RE: General Struts Question

2002-09-11 Thread Pat Quinn
- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 1:33 PM To: 'Struts Users Mailing List' Subject: RE: General Struts Question STFW, dude. Don't expect us to do your homework for you. -Original Message- From: Pat Quinn [mailto:[EMAIL

RE: General Struts Question

2002-09-11 Thread Pat Quinn
Date: Wed, 11 Sep 2002 15:03:54 -0400 That does not mean you can't (at least) go to amazon.com and search for books on Java Struts. You were smart enough to subscribe to this list, after all. http://www.tuxedo.org/~esr/faqs/smart-questions.html -Original Message- From: Pat Quinn [mailto

Re: General Struts Question [LET US BE KINDER AND MORE SOPHISTICATED?]

2002-09-11 Thread Pat Quinn
I know how to search in google and I have ordered a book (Mastering Struts by James Goodwill) on this topic… but I just wanted to make sure it was a decent book as I’m living on a student allowance… From: Eddie Bush [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To:

Re: General Struts Question [OT]

2002-09-11 Thread Pat Quinn
-Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: RE: General Struts Question i'm a first year uni student actually and i've only been working with java for six weeks actually From: [EMAIL