你好,我在使用导出excel功能时,遇到两个问题。
1 sheet页的背景图、单元格的背景图、浮动的图片都没有了。
2 设置的下拉框格式的单元格,导出之后下拉选项页没有了。
请问该如何处理。谢谢
导出excel代码
$("#saveExcel").click(function () {
var fileName = $("#exportFileName").val();
var password = $("#password").val();
if (fileName.substr(-5, 5) !== '.xlsx') {
fileName += '.xlsx';
}
var json = spread.toJSON();
excelIo.save(json, function (blob) {
saveAs(blob, fileName);
}, function (e) {
console.log(e);
}, {password: password});
});
设置单元格背景图片的代码
sheet.getCell(4, 2).backgroundImage("..//images//123.png");
设置sheet页背景图片代码
spread.options.backgroundImage = "images/backImage.png";
设置浮动图片代码
sheet.pictures.add("f0", "..//images//123.png", 15, 4, 160, 50);
添加下拉框样式代码如下
var combo = new spreadNS.CellTypes.ComboBox();
combo.items([{ text: "", value: "null" },{ text: "男", value: "man" }, { text: "女", value: "woman" }]);
combo.editorValueType(spreadNS.CellTypes.EditorValueType.text);
sheet.getCell(1, 4).cellType(combo).value("");
|
|