Re: How to change automatic type conversion error message

2008-05-17 Thread Arpan Debroy
It looks nice..thanks for the help.. On Fri, May 16, 2008 at 5:07 PM, Alberto A. Flores <[EMAIL PROTECTED]> wrote: > Read the section "Type Conversion Error Handling" in: > > http://struts.apache.org/2.x/docs/type-conversion.html > > You need to define an "invalid.fieldvalue." to do custom > type

Re: How to change automatic type conversion error message

2008-05-16 Thread Alberto A. Flores
Read the section "Type Conversion Error Handling" in: http://struts.apache.org/2.x/docs/type-conversion.html You need to define an "invalid.fieldvalue." to do custom type conversion error. Arpan Debroy wrote: In my application "id" attribute is int type of "Group" bean. In my JSP I have wr

How to change automatic type conversion error message

2008-05-15 Thread Arpan Debroy
In my application "id" attribute is int type of "Group" bean. In my JSP I have written like that :- Now if user puts a string into this text field, then error message come like that *invalid value for the field group.id But I want to show the error message with only "id" not "group.id". Is