当用户在某个列的单元格中键入值时,我想创建下一列(同一行)的单元格,readonly ou not editable。如果用户删除de值,我想再次编辑下一个单元格。
有人可以举例说明如何实现这个目标吗?
谢谢。
答案 0 :(得分:0)
您可以尝试像这样定义列:
const hot = new Handsontable(el, {
data: someData,
columns: [
{ type: 'text'},
{ type: 'numeric'},
{ type: 'text'}
]
});
您可以更新此设置
hot.updateSettings({
columns: [
{ type: 'text'},
{ type: 'text', readOnly: true},
{ type: 'text'}
]
});