本帖最后由 Dtttax 于 2024-5-23 16:21 编辑
现在有两个自定义单元格类型,A继承GC.Spread.Sheets.CellTypes.Text,B继承GC.Spread.Sheets.CellTypes.Base,由于需求变化B需要用到A的一些方法,考虑让B继承A,尝试把A换成继承GC.Spread.Sheets.CellTypes.Base,直接改会导致无法编辑单元格,添加了如下方法后可以编辑了,但输入公式有问题,没有公式提示也不能直接点其他单元格
createEditorElement() {
return document.createElement("input");
};
getEditorValue (editorContext) {
return editorContext.value
};
setEditorValue(editorContext, value) {
editorContext.value = value
};
|
|