Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Time component of date not being honored

    Is there anyway to display a date field in a list grid WITH the time. When I set a field type to "date" it seems like the time is simply ignored. When looking at what is returned from the datasource fetch it looks like it is not returning the time within the date at all. We are using the following on the server:

    Code:
    dsResponse.setData(new JSONFilter(list, dsRequest.getDataSource(), true));

    #2
    Some of the built in date formats include time (see DateDisplayFormat). You can choose which one is used via listGridField.displayFormat (or for the whole grid via listGrid.dateFormatter).

    Comment

    Working...
    X