导入Excel模板后,通过拖拽的方式设置单元格
var target = spread.hitTest(x, y);
var rowIndex = target.worksheetHitInfo.row;
var colIndex = target.worksheetHitInfo.col;
//判断是否设置过单元格类型,1是默认的单元格
//如果设计单元格类型直接绑定元数据,不生成标题和输入框
if(sheet.getCellType(rowIndex, colIndex).editorType != 1)
在执行sheet.getCellType(rowIndex, colIndex方法报错,这是什么原因呢?
|
|