Re: Two buttons on same row

2008-04-11 Thread akash agrawal
ur problem. --Sharath. --- On Fri, 4/11/08, Márcio Gurgel <[EMAIL PROTECTED]> wrote: > From: Márcio Gurgel <[EMAIL PROTECTED]> > Subject: Re: Two buttons on same row > To: "Struts Users Mailing List" > Date: Friday, April 11, 2008, 3:04 PM > Hi Akash, &

Re: Two buttons on same row

2008-04-11 Thread Márcio Gurgel
Hi Akash, I think that is not a good idea just change the theme.. Doing that you're gona lose some functionality.. Like validation, etc.. There's a way, overwriting the xhtml theme (I made this in a project, and it's working). Do the following steps: 1 - Unzip the struts 2 core jar; 2 - Copy tem

RE: Two buttons on same row

2008-04-11 Thread Michael Gagnon
Edit your struts.xml to reflect the following: http://struts.apache.org/dtds/struts-2.0.dtd";> ... ... The behavior should be more as you expect after that. You will lose things like the label property on textfields though. In that case you just type it outside like: ... U

Re: Two buttons on same row

2008-04-11 Thread sharath karnati
Hi Akash, Put 'theme=simple' this will solve your problem. --Sharath. akash agrawal <[EMAIL PROTECTED]> wrote: Hi, s:submit creates a row for a button. I have two buttons and two submit appears on two different row. How do I put them on the same row? Can anyone give an example?