Struts 2.0.6 with Tomcat 6.0

2007-05-02 Thread Rohit Dewan
I am considering the use of Tomcat 6.0 which implements Servlet 2.5 and JSP 2.1. Should I expect any issues using it with Struts 2.0.6? Regards, Rohit

specifying timezone in date tag

2007-04-30 Thread Rohit Dewan
Is there a way to specify timezone in the date tag? The current behavior defaults to the timezone of the server. Regards, Rohit

Using timezone with date tag

2007-04-27 Thread Rohit Dewan
Is there a way to specify timezone in the date tag. The current behavior defaults to the timezone of the server. Regards, Rohit

Re: autocompleter not working on Firefox 1.5 on Linux

2007-04-12 Thread Rohit Dewan
Hi Musachy, I rebooted my linux machine for an unrelated reason and now cannot reproduce the issue. It is working now. Sorry for the bother. Regards, Rohit

autocompleter not working on Firefox 1.5 on Linux

2007-04-11 Thread Rohit Dewan
I have a working autocompleter on Firefox 2.0 on MacOS. The same code does not work on Firefox 1.5 on Linux. Any suggestions? Thanks, Rohit

Re: autocompleter with JSON plugin

2007-04-06 Thread Rohit Dewan
o: https://issues.apache.org/struts/browse/WW-1872 musachy On 4/5/07, Rohit Dewan <[EMAIL PROTECTED]> wrote: > > I have the following in the body: > > <@s.url id="foos" value="foosList.action" /> > <@s.form theme=&quo

autocompleter with JSON plugin

2007-04-05 Thread Rohit Dewan
I have the following in the body: <@s.url id="foos" value="foosList.action" /> <@s.form theme="ajax" action="addTest" method="add"> <@ s.autocompleterModel theme="ajax" href="%{foos}" name="foo" /> <@s.submit value="OK" action="addTest" method="add"/>

Re: Session not set before prepare() function with Struts 2 prepare interceptor

2007-03-27 Thread Rohit Dewan
Hi Jason, I believe it is the servlet-config interceptor that is responsible for setting the session. I think it is part of the defaultStack. Try moving the defaultStack before prepare in your configuration. That might do the job. Regards, Rohit On 3/27/07, Jason Wyatt <[EMAIL PROTECTED]> wrote

multiple s.if tags

2007-03-27 Thread Rohit Dewan
I am trying the following with strange results. <@s.iterator value="availabilityList" status="rowstatus"> <@s.if test="#rowstatus.index%7==0"> <@s.if test="avail">

ETA for 2.0.7

2007-03-26 Thread Rohit Dewan
Would anyone be able to let me know the ETA for release 2.0.7? Thanks, Rohit

s.autocompleter with JSON Plugin

2007-03-17 Thread Rohit Dewan
I have the following in the body: <@s.url id="foos" value="foosList.action" /> <@s.form theme="ajax" action="addTest" method="add"> <@s.autocompleterModel theme="ajax" href="%{foos}" name="foo" /> <@s.submit value="OK" action="addTest" method="add"/>

Re: s.autocompleter not found

2007-03-16 Thread Rohit Dewan
nd use "autocompleterModel", it will be fixed for 2.0.7. regards musachy On 3/16/07, Rohit Dewan <[EMAIL PROTECTED]> wrote: > > I have a page configured as follows: > > http://www.w3.org/1999/xhtml";> > > > Test > <@s.head theme="ajax" /> >

s.autocompleter not found

2007-03-16 Thread Rohit Dewan
I have a page configured as follows: http://www.w3.org/1999/xhtml";> Test <@s.head theme="ajax" /> and later in the body <@s.url id="bars" value="barsList.action" /> <@s.form action="addFoo" method="add"> <@s.autocompleter theme="ajax" href="%{bars}" name="bar" />