Re: Result Annotations and parameters

2007-12-09 Thread Johannes Geppert
Does no one have a resolution for my problem? With XML-Configuration it works perfectly. But I like the Configuration with Annotations. I try it with Struts 2.1.0 and the codebehind plugin. Thank You Johannes Hello, i try to use the Result Annotations in my new Project, this works fine

Please visit and log any usefull links in this database

2007-12-09 Thread Jose Cardoso
Dear All, What about storing some important links in this database ? http://www.hotitles.com/ http://www.hotitles.com/ That could prove to be useful later when problems reoccur. Best Regards Jr * Working

Re: Datagrid in Struts2

2007-12-09 Thread Oleg Mikheev
quinquin2209 wrote: I am using Struts 2 and I wanna develop a datagrid as that provided in Struts Layout. I have couple of questions: I don't know what Struts layout is, but there is a nice grid in dojo 1.0 (in dojox). It's not included in Struts2 (I think), but it will be someday.

How to redirect error message

2007-12-09 Thread Edgaras
Hallo, i want to redirect my errors together with page redirect...: if user is logged he should see message person created on StartPage.jsp and if not on Login.jsp. It works if I do directly forward, but if i redirect Login.jsp to StartPage.jsp error massege is gone. Could you

Re: Result Annotations and parameters

2007-12-09 Thread Ted Husted
Is the property actually ID, as in String getID() ? Or is it getId() ? In the JPA MailReader code (see the sandbox), @Results like this one are working: @Result(name = Index.SUCCESS, value = Index.INDEX, type =ServletActionRedirectResult.class, params = {Index.USER, Index.USER_USERNAME })

Struts 2 and DateTimePicker tag

2007-12-09 Thread Jugal
Hello All, I am using Struts 2.0.11 for development of my application. I am using datetimepicker tag and I want to trap onchange event of datetimepicker tag. After exploring for a while I found that there is already a https://issues.apache.org/struts/browse/WW-1867 bug raised for the issue.

Re: REST Showcase

2007-12-09 Thread Piero Sartini
If you've used Maven before you're probably better off checking out the source and performing your own build. It would take less than 10-30 mins to setup. http://struts.apache.org/2.x/docs/building-the-framework-from-source.html If maven is used, 2.1.1-SNAPSHOT should work:

Re: REST Showcase

2007-12-09 Thread Martin Gainty
Good Morning Piero in my test pom.xml in plugin-repositories if I configure the suggested pluginRespository pluginRepository idapache.snapshots/id nameApache Maven Repository (Snapshots and Test Builds)/name !--

Re: REST Showcase

2007-12-09 Thread Piero Sartini
pluginRepository idapache.snapshots/id nameApache Maven Repository (Snapshots and Test Builds)/name !-- urlhttp://people.apache.org/repo/m2-snapshot-repository//url -- urlhttp://people.apache.org/repo/m2-snapshot-repository//url

Re: Required validator dosen't work

2007-12-09 Thread Arpan Debroy
I want to validate - 1) The text box should have some value(required validator doesn't show any error message even if it's empty).. 2) The text box must have any numerical(I am using long data type) value. I have no clue how to do it for long. Can anyone please help.. Thanks On Dec 6, 2007

Re: REST Showcase

2007-12-09 Thread Wendy Smoak
On Dec 9, 2007 9:58 AM, Martin Gainty [EMAIL PROTECTED] wrote: Good Morning Piero in my test pom.xml in plugin-repositories if I configure the suggested pluginRespository pluginRepository idapache.snapshots/id nameApache Maven Repository (Snapshots and Test

[s2.1] dojo plugin 1.0.1

2007-12-09 Thread Pedro Herrera
Is someone interested to refit dojo-plugin to dojo 1.0.1 release ? Herrera -- View this message in context: http://www.nabble.com/-s2.1--dojo-plugin-1.0.1-tp14241751p14241751.html Sent from the Struts - User mailing list archive at Nabble.com.

Re: Validation Problem

2007-12-09 Thread Arpan Debroy
Please put some more inputs. On Dec 8, 2007 12:40 PM, [EMAIL PROTECTED] wrote: Hi all iam using struts2 iam getting a validation Problem All the fields get Validated while using the get method for a particular action while using the post method only two fields get validated Ginu

Re: How to redirect error message

2007-12-09 Thread Yayo
Errors are stored in a request scope attribute and after a redirect they're lost because a new request is launched by the client browser. You must explicitly (by code) store them in a session attribute to get them in the second request. ^^ On Dec 9, 2007 3:18 PM, Edgaras [EMAIL PROTECTED] wrote:

Re: Struts 2 and DateTimePicker tag

2007-12-09 Thread Jeromy Evans
Jugal wrote: Hello All, I am using Struts 2.0.11 for development of my application. I am using datetimepicker tag and I want to trap onchange event of datetimepicker tag. After exploring for a while I found that there is already a https://issues.apache.org/struts/browse/WW-1867 bug raised

RE: datetimepicker tag

2007-12-09 Thread Rajagopal_Yendluri
Hi.. I am using 2.0.9, but for the nothing is displaying in jsp page except label. Included the ajax theme in jsp page. Checked the generated dojo script, it is also fine.. but nothing is displaying in my jsp page... Any Views... or ideas... what could be the reasons for not displaying

Re: datetimepicker tag

2007-12-09 Thread Jeromy Evans
Rajagopal_Yendluri wrote: Hi.. I am using 2.0.9, but for the nothing is displaying in jsp page except label. Included the ajax theme in jsp page. Checked the generated dojo script, it is also fine.. but nothing is displaying in my jsp page... Any Views... or ideas... what could be the

RE: datetimepicker tag

2007-12-09 Thread Rajagopal_Yendluri
I am not accessing the page directly, am going to the page thru an action only... to display few other dropdowns. Any other reasons ??? -Original Message- From: Jeromy Evans [mailto:[EMAIL PROTECTED] Sent: Monday, December 10, 2007 10:51 AM To: Struts Users Mailing List Subject: Re:

Re: datetimepicker tag

2007-12-09 Thread Jeromy Evans
Use FireBug to see if there's any errors loading dojo, it's dependencies and datapicker images. It's has to be related to your specific setup. eg. apache is in front of your container and handles all requests for images. eg. serving static files from /struts is disabled and you don't have an

Re: datetimepicker tag

2007-12-09 Thread Peng Tuck Kwok
If you have firefox you can actually check out the javascript console for errors, might give you a clue as to what's going on if it is a js problem. HIH On Dec 10, 2007 12:54 PM, Rajagopal_Yendluri [EMAIL PROTECTED] wrote: Hi.. I am using 2.0.9, but for the nothing is displaying in jsp

RE: datetimepicker tag

2007-12-09 Thread Rajagopal_Yendluri
Hi, I tested the same with firefox: Tools= PageInfo = Forms Tab: am not able to see the field name for s:datetimepicker ... . Tools ErrorConsole = Warnings Tab: Warning: Error in parsing value for property 'cursor'. Declaration dropped. Source File:

Re: datetimepicker tag

2007-12-09 Thread Jeromy Evans
Use Firebug! https://addons.mozilla.org/en-US/firefox/addon/1843 Jeromy Evans wrote: Use FireBug to see if there's any errors loading dojo, it's dependencies and datapicker images. It's has to be related to your specific setup. Rajagopal_Yendluri wrote: Hi, I tested the same with