This commit is contained in:
2026-04-07 14:50:23 +09:00
commit b4e485502b
4778 changed files with 2017091 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
document.addEventListener("DOMContentLoaded", function() {
setTimeout(function(){
var hot, container = document.getElementById("borders");
hot = Handsontable(container, {
data: Handsontable.helper.createSpreadsheetData(70, 20),
rowHeaders: !0,
fixedColumnsLeft: 2,
fixedRowsTop: 2,
colHeaders: !0,
customBorders: [{
range: {
from: {
row: 1,
col: 1
},
to: {
row: 3,
col: 4
}
},
top: {
width: 2,
color: "#5292F7"
},
left: {
width: 2,
color: "orange"
},
bottom: {
width: 2,
color: "red"
},
right: {
width: 2,
color: "magenta"
}
}, {
row: 2,
col: 2,
left: {
width: 2,
color: "red"
},
right: {
width: 1,
color: "green"
}
}]
});
var hotMobilesTablets, containerMobilesTablets = document.getElementById("mobilesTablets");
hotMobilesTablets = new Handsontable(containerMobilesTablets, {
data: Handsontable.helper.createSpreadsheetData(100, 100),
rowHeaders: !0,
colHeaders: !0,
})
}, 800);
}
);