私のグリッドには、次のパラメーターを持つ日付列があります。
update: {
url: ROOT+"user/update-user",
type: "POST"
}
columns: [
{...},
{
field: "DoB",
width: 68,
title: "DoB",
format: "{0:dd/MM/yyyy}",
template: '#= kendo.toString(DoB,"dd/MM/yyyy") #'
},
{...}
datasource: {
...
schema: {
model: {
DoB: {type: "date", editable: false, format: "{0:dd/MM/yyyy}"},
}
}
}
問題は、日付列を更新しようとすると、SQL スタイルの日付「YYYY-MM-DD」ではなく、非常に長い日付が送信されることです。
Wed Jan 09 2003 00:00:00 GMT +0000 etc
これの原因は何ですか?