Hi,
I have already applied cellsrender in ‘datetimeinput’ column as follows:-
`cellsrenderer: function (row, columnfield, value, defaulthtml, columnproperties) {
var formattedDate = Globalize.format(value, ‘d’, “TH-th”);
return ‘<div style=”text-align: center; margin-top: 5px;”>’ + formattedDate + ‘</div>’;
},
It showing date correctly while cell is not editable but when it became editable it shows date again with out year ‘offset'(-543).
Please provide some suggestion on this problem