Re: CSS stylesheet

2003-03-06 Thread Jacky Kimmel
link rel='stylesheet' href='html:rewrite page=/poconnect.css/' type='text/css' / in the jsp is how I did it. Include the stylesheet in your build file. Renato Romano [EMAIL PROTECTED] wrote:Does anyone knows how to render a With struts ?? Thanks a lot. Renato

Re: CSS stylesheet

2003-03-06 Thread Jacky Kimmel
link rel='stylesheet' href='html:rewrite page=/poconnect.css/' type='text/css' / in the jsp is how I did it. Include the stylesheet in your build file. Renato Romano [EMAIL PROTECTED] wrote: Does anyone knows how to render a With struts ?? Thanks a lot.

Re: Proper way to Link

2003-03-06 Thread Jacky Kimmel
I did a similiar thing as you. In the first action I created HashMaps that held the appropriate parameters from the form. I then stored these in the Request as a session attribute and forwarded from one action to the next. Sloan Seaman [EMAIL PROTECTED] wrote: You can do action chaining

Re: Proper way to Link

2003-03-06 Thread Jacky Kimmel
I did a similiar thing as you. In the first action I created HashMaps that held the appropriate parameters from the form. I then stored these in the Request as a session attribute and forwarded from one action to the next. Sloan Seaman [EMAIL PROTECTED] wrote:You can do action chaining such

Re: Proper way to Link

2003-03-06 Thread Jacky Kimmel
I did a similiar thing as you. In the first action I created HashMaps that held the appropriate parameters from the form. I then stored these in the Request as a session attribute and forwarded from one action to the next. Sloan Seaman [EMAIL PROTECTED] wrote: You can do action chaining

Re: Proper way to Link

2003-03-06 Thread Jacky Kimmel
I did a similiar thing as you. In the first action I created HashMaps that held the appropriate parameters from the form. I then stored these in the Request as a session attribute and forwarded from one action to the next. Sloan Seaman [EMAIL PROTECTED] wrote: You can do action chaining

paginator tags

2003-03-06 Thread Jacky Kimmel
Does anyone know how to implement paginator tags? Ie: you have a list of 30 items out of 100. You now want to display the next 30 and so on. Also, I am using application.resource for all labels. I want to have a name with a trademark symbol as a superscript. Anyone know how to do this?

Multiple redircets in struts from one jsp

2003-02-27 Thread Jacky Kimmel
I have a detail jsp that is reached from a hyperlink on two other jsps. I want to be able to have two buttons: one to return to page A and another for page B? There is a parameter passed for each page and that is giving me the issue. It is not simply a forward but a forward to a page that

Re:How to put form parameters into a structure to iterate?URGENT!!!

2003-02-14 Thread Jacky Kimmel
I have a master form that contains about 40 input parameters that are passed to the MasterAction. Once there I would like to pull out the attributes to be forwarded onto 4 different actions. (Actually 3, one of the forms will be submitted 2x with different data) Which then invoke ejb's.

Re: jsp, multiple forms and beans

2003-02-12 Thread Jacky Kimmel
Here I go: I have a jsp that contains 4 forms. One for main info, another for merchandise info, and two for ship address address and bill address. Currently upon submit, I have an addressAction that gets passed the addressForms info. I stuff those parameters into AddressValue objects and

Tag for non box text area on jsp

2003-02-11 Thread Jacky Kimmel
What is the correct tag to be used to create a text line on a jsp without diplaying a box? the html:text puts a box out. - Do you Yahoo!? Yahoo! Shopping - Send Flowers for Valentine's Day

Re: does any one use castor? for java to XML mapping

2003-02-11 Thread Jacky Kimmel
I used Castor for a similiar function a while back. Look to this link for info: www.javaworld.com/javaworld/jw-12-2001/jw-1228-jaxb-p2.html Ashish Kulkarni [EMAIL PROTECTED] wrote:Hi, Sorry to post a question about castor in this forum, but may be some one has used it can help me out. I tried

Nesting forms

2003-02-10 Thread Jacky Kimmel
I need to display data from the database in a jsp. In order to do this I have created a form in the struts-config.xml. My question is on how to nest forms. I have the main form, then a lineItem form with item info (there may be mulitiple line Items), then two address forms: shipping and

Re: Nesting forms

2003-02-10 Thread Jacky Kimmel
that helps you out. Jon. - Original Message - From: Jacky Kimmel To: Sent: Monday, February 10, 2003 5:16 PM Subject: Nesting forms I need to display data from the database in a jsp. In order to do this I have created a form in the struts-config.xml. My question is on how to nest forms. I

Re: Nesting forms

2003-02-10 Thread Jacky Kimmel
at all apart from declaring your initial actionform there, hope that helps you out. Jon. - Original Message - From: Jacky Kimmel To: Sent: Monday, February 10, 2003 5:16 PM Subject: Nesting forms I need to display data from the database in a jsp. In order to do this I have created a form

Re: Reset button.

2003-02-10 Thread Jacky Kimmel
It sounds like your action does not check to see if the reset was clicked or not. What I have done is do this check at the beginning of all my action classes. If the reset has been selected then the action is redirected to the empty jsp. It sounds like your action mapping may also not be

Re: Reset button.

2003-02-10 Thread Jacky Kimmel
of each action class I have. Gus Delgado [EMAIL PROTECTED] wrote:how do I check for the reset in the Action? Jacky Kimmel wrote: It sounds like your action does not check to see if the reset was clicked or not. What I have done is do this check at the beginning of all my action classes