[S2] Validating Forms with Wildcard Mapping

2008-08-05 Thread Markus Stauffer
side validation? kind regards -- Markus Stauffer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [S2] Validating Forms with Wildcard Mapping

2008-08-05 Thread Markus Stauffer
Belingueres [EMAIL PROTECTED] wrote: AFAIK, wildcard mapping has sense only inside struts.xml. In your form, you must specify exactly which action will be called, like Subscribe_dosomething 2008/8/5 Markus Stauffer [EMAIL PROTECTED]: Hello all Say I have a struts2 form: s:form action

Re: [S2] Validating Forms with Wildcard Mapping

2008-08-05 Thread Markus Stauffer
on the wildcarding in struts.xml to route the request appropriately. jk On Tue, Aug 5, 2008 at 7:00 AM, Markus Stauffer [EMAIL PROTECTED]wrote: I have this in my form: s:form action=Subscription_* s:textfield key=something/ s:submit value=%{'Submit'} method=execute/ s:submit value=%{'Cancel

Re: Strange Behaviour in FireFox3

2008-07-31 Thread Markus Stauffer
I had the exact same problem. Turns out it is a problem in dojo 0.4.0 that is shipped with struts2. I include my own build of dojo to solve the problem. kind regards -- Markus Stauffer On 7/31/08, nauke. [EMAIL PROTECTED] wrote: Hi all, Was really not sure which mailing list to post

Re: Dojo javascript errors with ajax theme. please help

2008-07-22 Thread Markus Stauffer
Thanks a lot Jermoy! This fixed my issue with ff3. I created a custom dojo build andd disabled struts.widget.StrutsTimePicker. I don't use the DateTimePickers. The svn repo is here: http://svn.dojotoolkit.org/src/tags/release-0.4.0/ regards -- Markus Stauffer On Tuesday 22 July 2008 17.57:15

Re: [S2] devMode + Maven2 + recompile classes

2008-07-22 Thread Markus Stauffer
Can i do this with tomcat as well. I think it's called hot-deploy or something. Someone got it working with netbeans 6.1+ and maven2 project? regards -- Markus Stauffer On Tuesday 22 July 2008 22.36:51 Nils-Helge Garli Hegvik wrote: Are you asking how to set up reloading of the webapp

Re: struts2 validation

2008-07-14 Thread Markus Stauffer
If you want validation like in struts1 you can implement the interface com.opensymphony.xwork2.Validateable in your Action class. The method validate() is the same as in your struts1 FormBean. But maybe that's a bit old fashioned :) Regards -- Markus Stauffer On Mon, Jul 14, 2008 at 8:54 AM

Re: struts2 validation

2008-07-14 Thread Markus Stauffer
theme=simple list=fieldList headerKey= headerValue=- - Please Select - -/ /s:form If you submit this form struts will call myaction.getMyBeanVariableName().setFieldName(selectedValue). Regards -- Markus Stauffer On Mon

Re: how do i obtain the selected value of the select element

2008-02-13 Thread Markus Stauffer
Have a look at the struts-showcase examples. There are lots of s:select tags with Actions. http://www.planetstruts.org/struts2-showcase/tags/ui/example!input.action Regards -- Markus Stauffer On Wed, Feb 13, 2008 at 9:17 AM, Prashant Khanal [EMAIL PROTECTED] wrote: Hello Markus, Can you

Re: how do i obtain the selected value of the select element

2008-02-12 Thread Markus Stauffer
Hi name=concept means the struts Action will call the setConcept() method with the selected value as parameter. You want to add an instance variable named conecept in your Action class. Add getters and setters as well. Regards -- Markus Stauffer On Wed, Feb 13, 2008 at 5:31 AM, Prashant Khanal

s2 tooltip

2008-01-13 Thread Markus Stauffer
for the tooltip. Regards -- Markus Stauffer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: s2 override request_locale

2007-12-28 Thread Markus Stauffer
? Regards and thanks for all the help Markus Stauffer On Wednesday 17 October 2007 14.07:14 Dave Newton wrote: Have you tried overriding the getLocale() method of ActionSupport-derived classes? --- Markus Stauffer [EMAIL PROTECTED] wrote: Dear All Consider the following scenario

s2 File Upload Progress Bar

2007-11-01 Thread Markus Stauffer
Hello Has anyone tried to implement a file upload progress bar in s2? I have seen this technique on http://www.learntechnology.net/content/ajax/ajax_upload.jsp . Regards -- Markus Stauffer - To unsubscribe, e-mail: [EMAIL

s2 override request_locale

2007-10-17 Thread Markus Stauffer
can I achieve my goal? I tried to override the request_locale and locale variables with my own Locale. But unfortunately this is not of a permanent nature for the users session. Any help is appreciated. Kind regards -- Markus Stauffer