Patch for Bug #1598

2001-05-03 Thread Matthias Bauer
To all committers, I would like to ask one of the committers to submit the patch I attached to this mail for bug #1598. It adds a wrap attribute to the struts-html tag textarea. The bug was assigned to Craig, but I don't know if he is around. So could someone please incorporate this minor fix.

Re: JXPath: use xpath to access JavaBeans

2001-05-03 Thread James Strachan
Hi Dmitri From: Dmitri Plotnikov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 01, 2001 3:50 PM Subject: JXPath: use xpath to access JavaBeans Check out JXPath, a bridge between XPath and JavaBeans: http://www.plotnix.com/jxpath The basic idea is to use the XPath syntax to

Per-Populating Form (Take 2)

2001-05-03 Thread Open Source
Hi All, I had previously posted a mail about prepopulating the form before it is presented to the user. My take on this is : 1.ActionForm will have a method called init(HttpServletRequest req). In this init method we can use any request parameters to initilize the form the very first time

Re: Per-Populating Form (Take 2)

2001-05-03 Thread Craig R. McClanahan
On Thu, 3 May 2001, Open Source wrote: Hi All, I had previously posted a mail about prepopulating the form before it is presented to the user. My take on this is : 1.ActionForm will have a method called init(HttpServletRequest req). In this init method we can use any request

RE: Per-Populating Form (Take 2)

2001-05-03 Thread Natra, Uday
my $0.02 thought... Why don't U just inititlaize the form in the ActionHandler? Uday -Original Message- From: Open Source [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 11:27 AM To: [EMAIL PROTECTED] Subject: Per-Populating Form (Take 2) Hi All, I had previously posted a

Clarification on behavior of bean:include

2001-05-03 Thread Immanuel, Gidado-Yisa
Consider the following JSP Pages Main.jsp %@ taglib uri=bean prefix=bean % bean:define id=poweredbyTitle value=h2Economic Report By County/h2 toScope=request / jsp:include page=PoweredBy.jsp flush=true/ PoweredBy.jsp - %@ taglib

Re: Clarification on behavior of bean:include

2001-05-03 Thread Craig R. McClanahan
Unfortunately, you won't be able to use request scope for this. The reason is that, in a JSP 1.1 environment, bean:include has to internally do a separate request in order to buffer the output. Because it is a separate request, request scope attributes are not shared. Once we can migrate to