|
#1
|
|||
|
|||
|
Hi all
How I can to make custom date formatter for DetailViewer ? I want to show text like that : Code:
"11:00" is it possible ? I found many thread here about custom formatter but they can't help me. ____________________ Regards, Paata Lominadze Last edited by paatal; 12th Jul 2011 at 10:51.. |
|
#2
|
|||
|
|||
|
of course if i set this code :
Code:
DateUtil.setNormalDateDisplayFormatter(new DateDisplayFormatter() {
public String format(Date date) {
if (date == null)
return null;
DateTimeFormat dateFormatter = DateTimeFormat
.getFormat("HH:mm");
String format = dateFormatter.format(date);
return format;
}
});
I don't want it. I want to change formatter for concrete DetailViewer ____________________ Regards, Paata Lominadzd |
|
#3
|
|||
|
|||
|
any Idea ??
____________________ Regards, Paata Lominadze |
|
#4
|
|||
|
|||
|
............
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to custom date format on SelectItem? | dczech | Smart GWT Technical Q&A | 2 | 17th Jun 2011 12:06 |
| Custom Date Format | rukeller | Smart GWT Technical Q&A | 9 | 20th Aug 2010 01:47 |
| ListGrid date and time format on edit | polop | Smart GWT Technical Q&A | 1 | 21st Nov 2009 13:13 |
| Issue related to Time format in Date. | smulay | Technical Q&A | 0 | 21st Jul 2009 04:20 |
| Javascript error when setting a custom input date format | clavaud | Smart GWT Technical Q&A | 1 | 5th Feb 2009 12:53 |