RE: Radio options left aligned

2009-08-30 Thread Lee Clemens
While it is very interesting that it works outside a form, Wes is correct in thinking I want the radio buttons to be inputs for a form (no pun intended) -Original Message- From: Wes Wannemacher [mailto:w...@wantii.com] Sent: Sunday, August 30, 2009 11:51 PM To: Struts Users Mailing List S

There is no Action mapped for namespace / and action name

2009-08-30 Thread Prabhakar Peri
Hi, I have a struts2 application which is working fine. After I have enabled Tiles in this application, I am getting the error 'There is no Action mapped for namespace / and action name ...'. Looks like the problem is with some configuration files. Does any one have an idea of this? Prabha

Re: Radio options left aligned

2009-08-30 Thread Wes Wannemacher
On Sunday 30 August 2009 11:06:55 pm Martin Gainty wrote: > if you take it outside the form it works > /styles/main.css contents > radio.CustomClass { > border: 1px solid black; > background-color: InfoBackground; > align:left; > valign:middle > } > > .jsp.. > > test f

RE: Radio options left aligned

2009-08-30 Thread Martin Gainty
if you take it outside the form it works /styles/main.css contents radio.CustomClass { border: 1px solid black; background-color: InfoBackground; align:left; valign:middle } .jsp.. test for lee .. ..will render 2 radio buttons aligned to the left.

Latest Ant Contrib - AntWebTasks

2009-08-30 Thread Avlesh Singh
My apologies if this is not the right place to break this news. I have added some zing to the existing WAR task and made it do a lot more with this contrib - http://code.google.com/p/ant-web-tasks/ I would love to hear from everyone - Ant users, developers. Cheers Avlesh

RE: Radio options left aligned

2009-08-30 Thread Lee Clemens
I played around with it for a while, so I'm pretty sure it's not a caching issue. Firefox 3.5.2 Struts 2.1.6 I updated radiomap.ftl to put tags and grab the cssClass value and put it there (works, but doesn't alter the alignment behavior for the tags. -Original Message- From: Martin Ga

RE: Radio options left aligned

2009-08-30 Thread Martin Gainty
put align:left and/or valign:top in your Class if for any reason the align or valign does'nt render thats a definite bug.. which version browser? which version struts? thanks, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de c

RE: preferred way to jump start app into struts?

2009-08-30 Thread Martin Gainty
you'll need to identify navigation characteristics thru the controller in servlets context configuration file *servlet.xml but that is off-topic for this list Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité

Re: preferred way to jump start app into struts?

2009-08-30 Thread Rusty Wright
Thanks, that works well. I think I didn't try that because I couldn't get a similar setup to work with Spring MVC. Paweł Wielgus wrote: Hi all, Musachy and Dave are wright, you only need this: in your struts.xml no file in tomcat is needed, i use it in my www.isiak.pl app so you can

RE: Radio options left aligned

2009-08-30 Thread Lee Clemens
Doesn't seem to work, but maybe my description was unclear. I'm trying to get this: () OptA () OptB () OptC to look like this: () OptA () OptB () OptC theme="simple" prints them all in order theme="xhtml" prints them inside the same td tag (same row, not each as a new row). Using cssClass adds

RE: Radio options left aligned

2009-08-30 Thread Martin Gainty
either cssStyle or cssClass cssStyle="valign="middle" align="left"" or you can define a customClass inside stylesheet.css radio.CustomClass { border: 1px solid black; background-color: InfoBackground; align:left; valign:middle } then reference the customClass with cssClass attrib

RE: Radio options left aligned

2009-08-30 Thread Lee Clemens
If anyone else needs to do this in the future, updating radiomap.ftl seemed to be the only way. Just add and tags around the input tag/attributes. -Original Message- From: Dave Newton [mailto:newton.d...@yahoo.com] Sent: Saturday, August 29, 2009 5:50 PM To: Struts Users Mailing List Su

Re: preferred way to jump start app into struts?

2009-08-30 Thread Rusty Wright
I didn't know about the empty file trick; thanks. It's annoying that this isn't defined in the servlet spec. Each servlet container does it differently; with jetty you can have the welcome-file point to a servlet (although I must be doing something wrong since I couldn't get it to work). My

Re: ajax validation problem in IE8

2009-08-30 Thread Dave Newton
Martin Gainty wrote: you can take all your JS scripts and run it thru RhinoScript thats what i did for Dojo http://www.rhinoscript.org be sure to toss in plenty of alert statements! What in the name of Bumba's porcelain alter are you talking about? Unless IE8 runs RhinoScript I don't see how

Re: preferred way to jump start app into struts?

2009-08-30 Thread Xyzr
I have not tried Struts 2.1.8 at all. I only read about this "FORWARD" bug. Musachy Barroso wrote: > > this bug was fixed, are you having this problem? > > On Sat, Aug 29, 2009 at 12:22 PM, Xyzr wrote: >> >> BTW Struts < 2.1.8 will fail into infinite loop on >> "FORWARD". >> >> >> Xyzr wrote:

Re: preferred way to jump start app into struts?

2009-08-30 Thread Paweł Wielgus
Hi all, Musachy and Dave are wright, you only need this: in your struts.xml no file in tomcat is needed, i use it in my www.isiak.pl app so you can check it out, it's on tomcat. Also one can do any redirect or anything else in this default action, because it's a real action, for example i

Re: ActionForm is been called once only

2009-08-30 Thread Paweł Wielgus
Hi again, just to clarify, i'm talking about reset method inside any form that is a subclass of this one below: http://struts.apache.org/1.x/apidocs/org/apache/struts/action/ActionForm.html#reset(org.apache.struts.action.ActionMapping, javax.servlet.http.HttpServletRequest) and on every request t