You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`ampm: false,
monthFirst: false,
formatter: {
date: function (date, settings) {
if (!date) return '';
var day = date.getDate();
var month = date.getMonth() + 1;
var year = date.getFullYear();
var hour = date.getHours();
var minu = date.getMinutes();
return year + '-' + month + '-' + day + 'T' + hour + ':' + minu;
}
},
type: 'datetime',`
Output:
2017-12-19T13:15 13:15
So on the end is the time again...
The text was updated successfully, but these errors were encountered:
Have the same issue here ! Seems the date is setting once the day is selected, and then resetting once hour is selected. It result displaying the hours two times ...
How can i change to format yyyy-MM-ddThh:mm?
Output:
2017-12-19T13:15 13:15
So on the end is the time again...
The text was updated successfully, but these errors were encountered: