handsontableでhandsontableを使用して特定の列を無効にする方法.最初の列のみを編集可能にしたい.他の3つの列を無効にする.3つの列にreadonly trueを使用していますが、無効にする方法がうまくいきません....
columns: [
{
type:'handsontable',
handsontable: {
colHeaders: ['EmployeeNo','EmployeeName','Department','Designation'],
data: manufacturerData,
columns:[{},{readOnly: true},
{
readOnly: true
},
{
readOnly: true
}]
}
},
{}]