Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
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.
Thanks
Raju
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.
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
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.