这个是作用域的问题,因为class继承的在windows**问不到。单元格的拖拽涉及到了自定义单元格序列化的问题可以到下面的链接了解https://demo.grapecity.com.cn/sp ... erialization/purejs
另外,如需使你提供的demo正常运行,请添加下面的代码。
- var oldFun = GC.Spread.Sheets.getTypeFromString;
- GC.Spread.Sheets.getTypeFromString = function (typeString) {
- switch (typeString) {
- case "FloatCustomCellType":
- return FloatCustomCellType;
- default:
- return oldFun.apply(this, arguments);
- }
- };
复制代码
|