시트에 메모를 추가하려면 먼저 메모를 만들고 메모에 몇 가지 설정을 지정합니다. 그런 다음, add 메서드를 사용하여 지정된 셀에 대한 메모를 설정할 수 있습니다. 예:
다음 예와 같이 추가한 메모를 제거하려는 경우가 있습니다.
셀에 메모를 추가한 후 get 메서드를 사용하여 메모를 가져오거나 all 메서드를 사용하여 시트의 모든 메모를 가져올 수 있습니다.
window.onload = function () {
var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"));
initSpread(spread);
};
function initSpread(spread) {
var sheet = spread.getSheet(0);
sheet.addSpan(1, 1, 1, 6);
sheet.setValue(1, 1, "there is a comment on the upper right corner of the cell");
sheet.comments.add(1, 1, "new comment!");
document.getElementById("btnAddComment").addEventListener('click',function () {
var row = parseInt(document.getElementById("txtRowIndex").value);
var col = parseInt(document.getElementById("txtColumnIndex").value);
var spreadNS = GC.Spread.Sheets;
var sheet = spread.getSheet(0);
sheet.setValue(row, col, 'new comment');
var text = document.getElementById("txtComment").value;
sheet.comments.add(row, col, text);
})
};
<!doctype html>
<html style="height:100%;font-size:14px;">
<head>
<meta name="spreadjs culture" content="ko-kr"/>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="$DEMOROOT$/ko/purejs/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css">
<script src="$DEMOROOT$/ko/purejs/node_modules/@mescius/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script>
<script src="$DEMOROOT$/ko/purejs/node_modules/@mescius/spread-sheets-resources-ko/dist/gc.spread.sheets.resources.ko.min.js" type="text/javascript"></script>
<script src="$DEMOROOT$/spread/source/js/license.js" type="text/javascript"></script>
<script src="app.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="sample-tutorial">
<div id="ss" class="sample-spreadsheets" ></div>
<div class="options-container">
<div class="option-row">
<label for="txtRowIndex">Row index:</label>
<input id ="txtRowIndex" type ="text" value="5"/>
</div>
<div class="option-row">
<label for="txtColumnIndex">Column index:</label>
<input id ="txtColumnIndex" type ="text" value="2"/>
</div>
<div class="option-row">
<label for="txtComment">Comment text:</label>
<input id ="txtComment" type ="text" value="comment demo"/>
</div>
<div class="option-row">
<input type="button" id="btnAddComment" value="AddComment" />
</div>
</div>
</div>
</body>
</html>
.sample-tutorial {
position: relative;
height: 100%;
overflow: hidden;
}
.sample-spreadsheets {
width: calc(100% - 280px);
height:100%;
overflow: hidden;
float: left;
}
.options-container {
float: right;
width: 280px;
overflow: auto;
padding: 12px;
height: 100%;
box-sizing: border-box;
background: #fbfbfb;
}
label {
display: inline-block;
min-width: 90px;
margin: 6px 0;
}
input {
padding: 4px 6px;
box-sizing: border-box;
margin-bottom: 6px;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}