public class DatePropertyColumn extends PropertyColumn {
/**
* @see
com.inmethod.grid.column.PropertyColumn#getConverter(java.lang.Class)
*/
@Override
protected IConverter getConverter(final Class<?> varType) {
return new IConverter() {
/** serialVersionUID. */
private static final long serialVersionUID = 1L;
public Object convertToObject(final String varValue, final
Locale varLocale) {
return null;
}
public String convertToString(final Object varValue, final
Locale varLocale) {
Date date = (Date) varValue;
return new SimpleDateFormat().format(date);
}
};
}
}
Jurek Piasek wrote:
>
> How does one format a date in the inmethod datagrid?
>
> Thanks,
> Jurek.
>
>
--
View this message in context:
http://www.nabble.com/Formatting-dates-in-Inmethod-DataGrid-tp20614026p21084007.html
Sent from the Wicket - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]