Reputation: 1
When Editing dates in in-line edit, it returns in the yyyy-mm-dd. i need it to display in mm/dd/yyyy format .How can i achive this functionality . Thank you.
Upvotes: 0
Views: 402
Reputation: 2148
I assume as you've not provided any code that you are asking about setting it through the GUI.
I've flagged this as not related to programming, as you can find this by clicking the image at the top right, and going to Profile.
Click Edit, Advanced tab, and locale settings.
From here, you can set the date format for your user.
Upvotes: 1
Reputation: 329
var date = new Date('2010-10-11T00:00:00+05:30');
console.log((date.getMonth() + 1) + '/' + date.getDate() + '/' + date.getFullYear());
Upvotes: 0