Skip to main content
1-Visitor
September 6, 2016
Question

Change the date time format

  • September 6, 2016
  • 1 reply
  • 4553 views

Hi,

Currently I have a property of datetime type. I am getting date in below format.

example: 2016-07-22 13:55:45.773

I want to change the above date to 07-22-2016 01:55:45 PM.

Aanjan RaviPai Chung

Thanks

Raju

1 reply

5-Regular Member
September 6, 2016

Raju, the way timestamps are rendered is controlled by Localization Tables. Navigate to the Localization Tables section and open the Default table. The token 'dateTimeFormat_Default' controls how time is rendered. The default value is 'yyyy-MM-dd HH:mm:ss.SSS'. If you change that to 'yyyy-MM-dd HH:mm:ssA', it will display your time with AM/PM.

rk-311-VisitorAuthor
1-Visitor
September 7, 2016

Thanks Ravi. It's working.

But In my application datetime needs render in different formats in different places . So any way to handle in code level ?

Thanks

Raju

5-Regular Member
September 7, 2016

I don't think you can; unless you use different languages. You could have the default language with the default timestamps and language1 with AM/PM and show that specific language depending on which user logs in.