20金币
最佳答案您好,createEditorElement方法中创建的div外面会被SpreadJS再包一层容器,因此,您需要去修改这个外层容器的css样式,这样才能实现一个内容框下移的效果,具体如下:
FullNameCellType.prototype.updateEditor = function (editorContext, cellStyle, cellRect) {
if (editorContext) {
editorContext.style.width = cellRect.width;
editorContext.style.height = 100;
editorContext.parentNo ...
| |
| |