cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can change your system assigned username to something more personal in your community settings. X

External data datetime format

JL_18346
11-Garnet

External data datetime format

Hi everyone,

I've created a "thing" with a property named ExpirationDate with a basetype of DateTime.  I the date displaying in an experience.

The issue is the date displays as "2021-04-30T21:54:03.225Z".  Is there a way to change the format so the data appears as month/day/year(e.g. 4-30-2021)?

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions

It can be accomplished by Instance methods

 

 

Add below to filter

return value.getMonth() + 1 + "/" + value.getDate() + "/" + value.getFullYear()

 

View solution in original post

4 REPLIES 4

It can be accomplished by Instance methods

 

 

Add below to filter

return value.getMonth() + 1 + "/" + value.getDate() + "/" + value.getFullYear()

 

Thanks for the response.  You mention to add it to the filter, but what filter are you referring?  I don't see a filter in either composer or Studio.

 

thanks

Thanks much. This is just what I was looking for.
Top Tags