好吧,似乎有很多类似的问题,但我找不到回答这个特定问题的答案..所以这里..
有一个有效的 Kendo UI 网格。我的数据源正在返回一个时间戳 - 这是返回到代码的 JSON 响应:
您会注意到下一行也是一个日期。由 MySQL 作为标准 DateTime 格式返回 - 我很乐意直接使用它。但我已将日期转换为我认为更通用的时间戳。(??)
现在我需要做两件事 - 将时间戳格式化为可读日期并编辑日期,以便将其保存回数据源。但让我们先解决格式化问题。
我当前显示该列的代码如下所示:
{ title: "Trial<br>Date",
field: "customer_master_converted_to_customer_date",
format: "{0:d/M/yyyy}",
attributes: {
style: "text-align: center; font-size: 14px;"
},
filterable: true,
headerAttributes: {
style: "font-weight: bold; font-size: 14px;"
}
},
虽然我试过..
toString(customer_master_converted_to_customer_date, "MM/dd/yyyy")
..以及它的几种变体-就格式字符串而言。是的,我试过输入:
type: "date",
无论我做什么,我都只会得到时间戳。
任何人?