I am formatting dates in my grid to display as ‘MM/dd/yy HH:mm’. When the grid initially loads, the dates appear as a string “/Date(15717528000000)/”, similar to how excel displays dates incorrectly. Once the cell is clicked, the date appears correctly. I’ve included my code below and before and after images of my page.`
{
text: 'Out of<br/>Service<br/>Date', align: 'center', dataField: 'ACOutServiceDate', columntype: 'datetimeinput', width: 150,
createeditor: function (row, column, editor) {
editor.jqxDateTimeInput({
formatString: 'MM/dd/yy HH:mm',
showTimeButton: true,
showCalendarButton: true,
height: '75px'
});
},
},
link to initial image

link to 2nd image
