在我的项目中包含DateTime值的每个网格(Kendo for AngujarJs)中我得到了这个NaN/NaN/NaN
这是我的架构:
schema: {
model: {
id: 'RequestId',
fields: {
RequestId: { type: 'number' },
RequestNumber: { type: 'number'},
FileNumber: { type: 'string' },
RegistrationDate: { type: 'datetime' },
RequestStatus: { type: 'string' },
UnitName: { type: 'string' }
}
}
}
我尝试使用RegistrationDate: { type: 'string' },
或RegistrationDate: { type: 'date' },
,但没有任何变化,我也尝试了columns
:
{
field: 'RegistrationDate',
title: 'Fecha de Registro',
type: 'date'
},
或type: 'datetime'
并且没有。
以下是我从服务器获得的信息:
有关如何使其有效的任何想法?我知道,在网格中显示Date是非常基本的,在其他项目中我没有问题,但正如你所看到的,我尝试了所有我能想到的。
答案 0 :(得分:0)
试试这个:
{
field: 'RegistrationDate',
title: 'Fecha de Registro',
format: "{0:yyyy-MM-dd HH:mm:ss}"
}