SpreadJS 入门系列课程 (三):工作簿
本帖最后由 lynn512 于 2020-7-13 10:03 编辑文章末尾处有视频中的示例代码可以下载(Vue版已更新):s!Ui:
视频主要内容,工作簿的相关知识:
[*]基础样式设置
[*]事件及命中测试
[*]JSON导入导出
http://video1.grapecity.com.cn/SpreadJS/online/SpreadJS%E5%85%A5%E9%97%A8%E7%B3%BB%E5%88%97%E8%AF%BE%E7%A8%8B%EF%BC%88%E4%B8%89%EF%BC%89.mp4
常用API:
初始化:var spread =newGC.Spread.Sheets.Workbook(document.getElementById('ss'), { sheetCount: 1 });工作簿的基本设置:新增按钮是否显示:spread.options.newTabVisible = false;导航栏是否显示:spread.options.tabNavigationVisible = false;表单栏是否显示:spread.options.tabStripVisible = false;表单名称标签: 双击是否可编辑:spread.options.tabEditable = true; 是否可拖拽排序:spread.options.allowSheetReorder = true; 定制标签颜色:sheet.options.sheetTabColor = 'red'; 暂停重绘:spread.suspendPaint(); 重新激活重绘:spread.resumePaint(); 滚动条常用设置:spread.options.scrollbarMaxAlign = true; //对齐表单最后的行列更多设置参考:https://demo.grapecity.com.cn/spreadjs/help/v12/content/webframe.html#SpreadJS~GC.Spread.Sheets.Workbook~options.html事件: GC.Spread.Sheets.Events.ActiveSheetChanged 更多事件参考: https://demo.grapecity.com.cn/spreadjs/help/v12/content/webframe.html#SpreadJS~GC.Spread.Sheets.Events.htmlJSON导入导出: var jsonStr = JSON.stringify(spread1.toJSON({includeBindingSource: true})); spread2.fromJSON(JSON.parse(jsonStr));常见问题:https://gcdn.grapecity.com.cn/forum.php?mod=viewthread&tid=56265&extra=page%3D1
https://gcdn.grapecity.com.cn/static/image/hrline/1.gif
希望这个视频能给刚开始使用SpreadJS的小伙伴带来帮助,{:3_62:}
对这系列的视频如果有什么建议意见可以在楼下回复~ 需要大家的反馈ヽ(′o`有关于工作簿的问题,可以在帖子下讨论,如有需要可以视频中的示例代码
文件的解压密码是? BINSON 发表于 2019-6-6 08:29
文件的解压密码是?
已经重新上传文件,现在下载没有密码了~
页:
[1]