0
****示例:http://jsfiddle.net/o8cw3vj8/12/ 我想導出kendo ui網格和網格具有日期列,導出時它僅包含############ ...當日期年份小於或等於1900 謝謝****Kendo UI網格導出日期列數據爲###############
$("#grid1").kendoGrid({
toolbar: ["excel"],
excel: {
fileName: "Kendo UI Grid Export.xlsx",
proxyURL: "http://demos.telerik.com/kendo-ui/service/export",
filterable: true
},
dataSource: {
data: [{
"Id": 1,
"Name": "John",
"DOB": "01/01/1753"
}, {
"Id": 2,
"Name": "Joe",
"DOB": "01/01/1953"
}, {
"Id": 3,
"Name": "Jack",
"DOB": "01/01/1940"
}],
schema: {
model: {
fields: {
Id: {
type: "number"
},
Name: {
type: "string"
},
DOB: {
type: "date"
}
}
}
}
},
columns: [
"Id", "Name", "DOB"
]
});
這是導出到Excel?當列的值太窄時,Excel顯示一串哈希值:嘗試調整Excel的列寬。 – Richard
進一步思考:這是錯誤的。 Excel只能處理從1900-01-01開始的日期:在此之前的任何東西都只是Excel無法處理的負數。 – Richard
是的問題是Excel只能處理1900-01-01的日期。 – Amol