I have a grid that includes a column with datetime property.
I define the column as such:
{
text: 'Last Modified',
dataField: 'lastModified',
cellsFormat: 'MM/dd/yyyy hh:mm:ss',
cellsalign: 'center',
width: 130
},
The raw data is : “2019-04-12T15:25:19.148Z” and the rendered data initially displays correctly as 04/12/2019 03:25:19.
However, when I perform an update row with a new object that contains the same ISO date the cellsformat does not get re-triggered and displays the value as raw data value.
My update is simply $(“#myGrid”).jqxGrid(‘updaterow’, rowid, newObject);
Is there some other rendering I need to do on a row update?
Thank you