Hello,
I’m retrieving forma Postgres DB, using C# & MVC, some fiels, being one a Datetime
In the JSON I get a Date Object, Date(1580079600000) and it is displayed as a string object, /Date(1580079600000)/
The Column is defined as:
{ text: ‘D.Inici’, datafield: ‘fecha_inicio’, hideable: true, hidden: false, cellsformat: ‘dd/MM/yyyy’, resizable: true, datatype: ‘date’, sortable: true, filterable: true, pinned: false },
And the datafield, in the dataadapter’s source is defined this way.
{ name: ‘fecha_inicio’, map: ‘fecha_inicio>date’, type: ‘date’ },
Can you see what is wrong?
Thank you
PS: I have tried both using the map attribute, and just defining { name: ‘fecha_inicio’, type: ‘date’ }, having no diferences.