0
我正在測試其中一個handontable的小提琴,並在移動列時發現問題。 請轉到下面的提琴並執行上述步驟。 http://jsfiddle.net/5u5vczcg/在Handsontable中移動列之後編輯單元格時數據不正確
var hot = new Handsontable(container, {
data: financeData,
colHeaders: ["Price", "Date", "1D Chg", "YTD Chg", "Vol BTC"],
rowHeaders: true,
stretchH: 'all',
sortIndicator: true,
columnSorting: true,
contextMenu: true,
manualColumnMove : true,
columns: [
{type: 'numeric', format: '$0,0.00'},
{type: 'date', dateFormat: 'DD/MM/YYYY', correctFormat: true},
{type: 'numeric', format: '0.00%'},
{type: 'numeric', format: '0.00%'},
{type: 'numeric', format: '0.00'}
]
});
移動列到位價日期。 雙擊任何價格單元格,您將看到單元格中的值僅爲日期。 同樣,當你雙擊日期單元格時,它們也不會正確顯示數據。 請您檢查並解決。