0
我無法弄清楚爲什麼導出的結果(如csv)在excel中查看時刪除了正斜槓。這個選項似乎工作,但所得到的數據顯示日期,這樣的「2 21 1991年7月26日1989年」將日期導出爲CSV
exporterFieldCallback: function (grid, row, col, input) {
if (col.colDef.type == 'date')
input = $filter('date')(input, 'MM/dd/yyyy');
return input;
},
請讓我知道我在這裏失去了
http://plnkr.co/edit/iJRhjy0nXR4P1xVVDRZd?p=preview