Re: Struts Themes Problem - help

2009-03-05 Thread Edward Song
instead below the field? s:fielderror s:paramclientname/s:param /s:fielderror -- View this message in context: http://www.nabble.com/Struts-Themes-Problem---help-tp18054982p22306342.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts Themes Problem - help

2009-03-03 Thread sajidbigler
s:paramclientname/s:param /s:fielderror -- View this message in context: http://www.nabble.com/Struts-Themes-Problem---help-tp18054982p22306342.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts Themes Problem - help

2009-03-03 Thread Jim Kiley
s:paramclientname/s:param /s:fielderror -- View this message in context: http://www.nabble.com/Struts-Themes-Problem---help-tp18054982p22306342.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts Themes Problem - help

2008-06-29 Thread Narayana S
Hi Dave, Thanks for your reply. i found solution to my issue. when i am using simple theme i need to use fielderror tag with param tag. like .. s:fielderror s:paramclientname/s:param /s:fielderror thanks for your time. On Fri, Jun 27, 2008 at 4:32 PM, Dave Newton [EMAIL

Re: Struts Themes Problem - help

2008-06-27 Thread Dave Newton
--- On Fri, 6/27/08, Narayana S [EMAIL PROTECTED] wrote: but here it introduced one more problem, with the xhtml theme we get the field level validation error messages below the individual control, but the simple theme is not giving any validation error messages. to get the errors i used

Re: Struts Themes Problem - help

2008-06-26 Thread Laurie Harper
To repeat my previous question: How is it failing? Note that the 'simple' theme generates a lot less markup, and doesn't generate everything the other themes do. Are I18N resources failing to get resolved, or is the theme just not generating the things you were expecting to see? With the

Re: Struts Themes Problem - help

2008-06-26 Thread Narayana S
Hi Laurie, Thanks for your reply. i found a work around for this. if i am applying as below, my application could read the values from resource bundle. :) this problem is solved. s:form action=clientAction theme=simple tr tds:label value=%{getText('app.clientname')} //td

Fwd: Struts Themes Problem - help

2008-06-25 Thread Narayana S
Hi Laurie / Dave, can you please help on this? -- Forwarded message -- From: Narayana S [EMAIL PROTECTED] Date: Tue, Jun 24, 2008 at 3:12 PM Subject: Re: Struts Themes Problem - help To: Struts Users Mailing List user@struts.apache.org, [EMAIL PROTECTED] Hi laurie

Re: Struts Themes Problem - help

2008-06-24 Thread Narayana S
Hi laurie, s:form action=TestAction method=post s:label key=app.indexheader / s:textfield name=cname key=app.cname/br This is part of the form i am creating, when the theme is default the label could get value app.indexheader from resource bundle and working fine, the

Re: Struts Themes Problem - help

2008-06-23 Thread Laurie Harper
Narayana S wrote: Hi Dave, thanks for your reply, but when i use simple theme, my application is not getting any values from resource bundle.. How is it failing? Note that the 'simple' theme generates a lot less markup, and doesn't generate everything the other themes do. Are I18N

Struts Themes Problem - help

2008-06-22 Thread Narayana S
Hi, i am new to struts 2, developed sample application that is using resource bundle, i could configure application and labels are perfectly displayed with the values retrived from the resource bundle. The problem is here struts 2 is applying it's own styles to my page, i want to give my

Re: Struts Themes Problem - help

2008-06-22 Thread Dave Newton
--- On Sun, 6/22/08, Narayana S [EMAIL PROTECTED] wrote: The problem is here struts 2 is applying it's own styles to my page, i want to give my own styles instead of using struts default styles, The easiest answer is to just supply your own CSS styles. You can also extend an existing, or

Re: Struts Themes Problem - help

2008-06-22 Thread Narayana S
Hi Dave, thanks for your reply, but when i use simple theme, my application is not getting any values from resource bundle.. will this problem be solved by extending theme ? can you provide any best link to extend a theme if it is the solution... ? On Sun, Jun 22, 2008 at 8:25 PM, Dave