您应该用的是SpreadJS吧,我把您的帖子移动到SpreadJS专区。
现在没有属性直接禁止双击autoFit。可以有两种办法实现,但是都有些限制,您根据需求去看用哪一种
1. 禁止调整列宽,调用 setColumnResizable 不让用户调整列宽,那么就没有autofit 了,但是列宽无法拖拽调整。
sheet.setColumnResizable(0,false);
2.禁止autoFit,调用下面的代码将autoFitColumn command,但是副作用是sheet.autoFitColumn(1)也不能用了,无法通过代码autofitColumn了
spread.commandManager().register("autoFitColumn", null); |