1 Star 0 Fork 101

rogerlo / x-spreadsheet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.html 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
myliang 提交于 2019-02-28 22:33 . i18n
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body onload="load()">
<div id="x-spreadsheet-demo"></div>
<script>
function load(){
// x.spreadsheet.locale('en');
x.spreadsheet('#x-spreadsheet-demo')
.loadData({
freeze: 'C3',
styles: [
{
bgcolor: '#f4f5f8',
textwrap: true,
color: '#900b09',
border: {
top: ['thin', '#0366d6'],
bottom: ['thin', '#0366d6'],
right: ['thin', '#0366d6'],
left: ['thin', '#0366d6'],
},
},
],
merges: [
'C3:D4',
],
rows: {
1: {
cells: {
0: { text: 'testingtesttestetst' },
2: { text: 'testing' },
},
},
2: {
cells: {
0: { text: 'render', style: 0 },
1: { text: 'Hello' },
2: { text: 'haha', merge: [1, 1] },
}
},
8: {
cells: {
8: { text: 'border test', style: 0 },
}
}
},
}).change((cdata) => console.log(cdata));
}
</script>
</body>
</html>
1
https://gitee.com/xlite/x-spreadsheet.git
git@gitee.com:xlite/x-spreadsheet.git
xlite
x-spreadsheet
x-spreadsheet
master

搜索帮助