Now I use:
| <f:converter converterId="com.xxxx.converters.DateConverter" />
|
And not:
| <s:convertDateTime pattern="dd/MM/yyyy"/>
|
Code :
| package com.xxxx.converters;
|
| import javax.faces.convert.DateTimeConverter;
|
| public class DateConverter extends DateTimeConverter {
|
| public static final String pattern = "dd/MM/yyyy";
|
| public DateConverter(){
| this.setPattern(pattern);
| }
|
| }
|
This works fine.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4025840#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...