我构造了一个handonstable,每个列都有自己的渲染器,具体取决于数据类型(可以是数字、文本或自定义)。我想在用户更改任何这些列的字段时更新单元格的颜色以表示其已更改。
我的问题是我不能真正设置自定义 onUpdate 渲染器,因为这会覆盖所有现有的渲染器。有任何想法吗?
我构造了一个handonstable,每个列都有自己的渲染器,具体取决于数据类型(可以是数字、文本或自定义)。我想在用户更改任何这些列的字段时更新单元格的颜色以表示其已更改。
我的问题是我不能真正设置自定义 onUpdate 渲染器,因为这会覆盖所有现有的渲染器。有任何想法吗?
您可以使用以下方法为特定单元格设置渲染器,而不是整个列getCellMeta
:
afterChange: function(changes, source){
if (source !== 'loadData' && source !== 'afterChange') {
changes.forEach(function(cellchanges) {
var row = cellchanges[0];
var col = hot.propToCol(cellchanges[1]);
hot.getCellMeta(row, col).renderer = textHasChangedRenderer;
});
}
}
要记住两件事:
1)您需要一系列“已更改”渲染器来覆盖默认渲染器和自定义渲染器:
var textHasChangedRenderer = function(instance, td, row, col, prop, value, cellProperties) {
Handsontable.renderers.TextRenderer.apply(this, arguments);
td.style.backgroundColor = '#cbd9e4';
};
var numberHasChangedRenderer = function(instance, td, row, col, prop, value, cellProperties) {
Handsontable.renderers.NumericRenderer.apply(this, arguments);
td.style.backgroundColor = '#cbd9e4';
};
var dateHasChangedRenderer = function(instance, td, row, col, prop, value, cellProperties) {
Handsontable.renderers.DateRenderer.apply(this, arguments);
td.style.backgroundColor = '#cbd9e4';
};
var customHasChangedRenderer = function(instance, td, row, col, prop, value, cellProperties) {
customRenderer.apply(this, arguments);
td.style.backgroundColor = '#cbd9e4';
};
2)将文本渲染器分配给数字列会破坏格式,因此您需要以某种方式跟踪初始渲染器到列的分配。