Hello guys!
I’m with a problem in datetimeinput fields of a grid. When I change the values in grid, the date seems to be alright, in the format that was specified (dd/MM/yyyy HH:mm). But the value sent to server-side is in another format (something like “Tue Oct 29 2013 00:00:00 GMT-0200 (Hora oficial do Brasil)”).
I’ve tried to make these things:
– In source > datafields
{ name: 'inicioconsolidacao', type: 'date', format: 'dd/MM/yyyy HH:mm' }
– In columns
{ text: 'Inicio Consolidacao', datafield: 'inicioconsolidacao', width: 140, columntype: 'datetimeinput', cellsformat: 'dd/MM/yyyy HH:mm', initeditor: function (row, value, editor) { editor.jqxDateTimeInput({ culture: 'pt-BR' }); }}
But doesn’t work. Have something that I made wrong?
Thanks for support, sorry by bad english.
Best regards.