如何使用handsontable中的handontable禁用特定列。我希望第一列只能编辑,其他三列被禁用。我对三列使用readonly true,但如何禁用它不起作用....
columns: [
{
type:'handsontable',
handsontable: {
colHeaders: ['EmployeeNo','EmployeeName','Department','Designation'],
data: manufacturerData,
columns:[{},{readOnly: true},
{
readOnly: true
},
{
readOnly: true
}]
}
},
{}]