Announcement

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

    datetime problem with REST datasource (smartgwt-mobile)

    We have a custom REST datasource implementation using the smartclient server framework. The implementation works well for string, integer and float types and also with datetime types when using smartclient as frontend. The Field-definition is <field name="closedOn" type="dateTime" />


    With smartGWT-Mobile we can see the following:
    - In the DSCallback of tableView.fetchData we see the rawData "closedOn":"2014-05-15T17:27:50.300"
    - in the tablewView's Record closedOn is null. It looks like the rawData has not been converted to a datetime
    The same for all datetime fields, other fields are ok.

    #2
    SmartGWT.mobile wasn't handling millisecond precision in returned datetime values. As of the next build, it now does.

    Comment

    Working...
    X