HTML To Struts tag

2004-05-27 Thread Naresh Sharma
Hi All,   Is there any good tool for converting existing HTML tags in Struts tags.     Thanks Naresh   - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

DispatchAction URL

2004-06-01 Thread Naresh Sharma
Hi,   I am using DispatchAction class and trying to invoke my method using following URL, but WL 8.1 is giving HTTP 404 error.   http://localhost:7001/abcSet/history?method=executeHistoryEdit/   abcSet is my app. Context root. And “history” is path as specified in struts-config.xml  

Logic:iterate

2004-06-08 Thread Naresh Sharma
Title: Logic:iterate Hi, I am setting a bean from my action class, this bean class has one hashmap object, and in jsp I want to print Hashmap "key" and "values" both. Can you please suggest how to do that? Regards Naresh

Passing parameter : include

2004-06-10 Thread Naresh Sharma
HI,     Please let me know equivalent struts tag,… I guess its bean:include but I am not sure how to pass parameters(struts equivalent of jsp:param) to this.   Can you please suggest good online resource on struts tags.             Regards naresh -

Request object

2004-06-10 Thread Naresh Sharma
HI,   In one of my include JSP I wish to fetch a particular request attribute which was set by main jsp page     <% HttpServletRequest httpRequest = (HttpServletRequest)request; String header     =  httpRequest.getParameter("header");   %>   Right now I am do

RE: Request object

2004-06-10 Thread Naresh Sharma
Title: RE: Request object I am displaying this parameter value in HTML -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, June 11, 2004 1:31 AM To: Struts Users Mailing List Subject: Re: Request object What are you trying to do based on the paramet

RE: Request object

2004-06-10 Thread Naresh Sharma
nt: Friday, June 11, 2004 2:56 AM To: [EMAIL PROTECTED] Subject: Re: Request object Use -- this will create a page-scoped variable and a scripting variable. Complete details can be found at: http://jakarta.apache.org/struts/userGuide/struts-bean.html#parameter Naresh Sharma wrote: > H

RE: Request object

2004-06-10 Thread Naresh Sharma
Title: RE: Request object I got the fetching scheme   Its       But other problems remains, how to tell jsp:include tag that pick the actual value from resource bundle for value="${global.commandinformation.title1}" />     From: Naresh Sharma Sent: Fr

bean define tag

2004-06-11 Thread Naresh Sharma
Hi,   I am reading a value object property and holding in a script variable defined using  bean:define tag.       This property “time” actually contains a key to the resource bundle, so passing it to bean:message tag, so it can fetch corresponding key from resource bundle.    

RE: bean define tag

2004-06-11 Thread Naresh Sharma
Title: RE: bean define tag No. I am only using en_US. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, June 11, 2004 2:41 PM To: [EMAIL PROTECTED] Subject: RE: bean define tag On 6/11/2004 5:08 AM, [EMAIL PROTECTED] wrote to CHRIS CRANFORD: Is

JSP:include page + Resource bundle

2004-06-24 Thread Naresh Sharma
Title: RE: Request object   HI,   Please suggest, I wish to pass ‘header’ parameter to CommandSaveIncludeHeader.jsp, the value inside ‘header’ parameter is actually a key in Resource bundle. See ex.     I am not sure if any Struts tag is there for above statement. But this s

select + optionsCollection tag

2004-06-25 Thread Naresh Sharma
Hi,   I have a combo box, and populating hash map values in this box.   Once initial form is populated, if user selects any option from this box, it will submit the form to my action class using method “callOnChange”. And action class does some operation and forward control back to this

Select + optionsCollection tag

2004-07-06 Thread Naresh Sharma
Hi,   I have a combo box, and populating hash map values in this box.   Once initial form is populated, if user selects any option from this box, it will submit the form to my action class using method “callOnChange”. And action class does re-populate the value object from backend and f

OptionsCollection and select tag

2004-07-07 Thread Naresh Sharma
Hi all,   I am not very clear how OptionsCollection tag works, I wish to know when we supply a Collection element to OptionsCollection tag, how it determines which element of this collection should come as selected element while rendering a drop down box.   Please suggest.   Regards