我有handon table,我的同一个col有自定义边框
customBorders:[{
range: {from:{row:0,col:5},to:{row:_rowsCount,col:7}},
left: {width: 2,color: '#5292F7'},
right: {width: 2,color: '#5292F7'}
}]
afterCreateRow我的边框不会重绘,最后一行没有自定义边框
我该如何解决?
答案 0 :(得分:0)
您需要调用渲染功能。
myHoT.render();
答案 1 :(得分:0)
afterCreateRow : function(index, amount, source) {
_rowsCount += 1;
handsontable.updateSettings({
customBorders: [{range: {from:{row:0,col:5},to:{row:_rowsCount,col:7}},
left: {width: 2,color: '#5292F7'},
right: {width: 2,color: '#5292F7'}
}],
});
handsontable.render();
});
不工作!