セル範囲をコピーまたは切り取って、現在のシートまたは他のシートに貼り付けることができます。この場合は、コピーしたセルの値と書式の両方がコピーされます。ただし、Spreadコンポーネントの内容を他のアプリケーション(メモ帳、Excelなど)に貼り付けた場合は、値だけが貼り付けられます。別のアプリケーションからコピーまたは切り取ったデータを、Spreadコンポーネントに貼り付けることもできます。
セルの内容を切り取りまたはコピーすると、コントロールにはコピー範囲を示すインジケータが表示されます。このインジケータを表示するかどうかを定義するには、cutCopyIndicatorVisibleオプションを使用します。インジケータの境界線の色を設定するには、cutCopyIndicatorBorderColorオプションを使用します。次に、この例を示します。
セル範囲をドラッグして、別のセル位置にドロップできます。[Ctrl]キーを押しながらドロップすると、ドラッグしたセルはコピーされます。[Ctrl]キーを押さない場合は、ドラッグしたセルは切り取られます。
SpreadJSのallowUserDragDropオプションを使用すると、ユーザーがセル範囲のデータを別の位置にドラッグアンドドロップできるかどうかを制御できます。また、showDragDropTipオプションを使用すると、ドラッグ時にヒントが表示されるかどうかを制御できます。ヒントには、ドラッグ先の位置が示されます。
window.onload = function() {
var spread = new GC.Spread.Sheets.Workbook(_getElementById('ss'), { sheetCount: 1 });
initSpread(spread);
};
function initSpread(spread) {
var sheet = spread.getActiveSheet();
spread.fromJSON(data[0]);
_getElementById('chkShowDragDropTip').addEventListener('click', function() {
spread.options.showDragDropTip = _getElementById('chkShowDragDropTip').checked;
});
_getElementById('chkAllowUserDragDrop').addEventListener('click', function() {
spread.options.allowUserDragDrop = _getElementById('chkAllowUserDragDrop').checked;
});
_getElementById('cutCopyIndicatorVisible').addEventListener('change', function() {
var value = _getElementById('cutCopyIndicatorVisible').checked;
spread.options.cutCopyIndicatorVisible = value;
});
_getElementById('setCutCopyIndicatorBorderColor').addEventListener('click', function() {
var value = _getElementById('cutCopyIndicatorBorderColor').value;
spread.options.cutCopyIndicatorBorderColor = value;
});
_getElementById('setIsProtected').addEventListener('click', function() {
var sheet = spread.getActiveSheet();
var value = _getElementById('setIsProtected').checked;
sheet.options.isProtected = value;
});
}
function _getElementById(id) {
return document.getElementById(id);
}
<!doctype html>
<html style="height:100%;font-size:14px;">
<head>
<meta name="spreadjs culture" content="ja-jp" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="$DEMOROOT$/ja/purejs/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css">
<script src="$DEMOROOT$/ja/purejs/node_modules/@mescius/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script>
<script src="$DEMOROOT$/spread/source/data/data.js" type="text/javascript"></script>
<script src="$DEMOROOT$/ja/purejs/node_modules/@mescius/spread-sheets-resources-ja/dist/gc.spread.sheets.resources.ja.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>
<script src="data.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">
<input id="chkAllowUserDragDrop" type="checkbox" checked="checked" />
<label for="chkAllowUserDragDrop" class="sizedLabel">ドラッグ操作を有効にする</label>
</div>
<div class="option-row">
<input id="chkShowDragDropTip" type="checkbox" checked="checked" />
<label for="chkShowDragDropTip" class="sizedLabel">ドラッグ中にヒントを表示する</label>
</div>
<div class="option-row">
<input type="checkbox" id="cutCopyIndicatorVisible" checked="checked" />
<label for="cutCopyIndicatorVisible" class="sizedLabel">切り取り/コピー中のセルにインジケータを表示する</label>
</div>
<div class="option-row">
<input type="checkbox" id="setIsProtected" />
<label for="setIsProtected" class="sizedLabel">シートを保護する</label>
</div>
<hr>
<div class="option-row">
<label>「red」、「blue」などの色の名前を入力して、切り取り/コピーインジケータの枠線の色を変更します。</label>
</div>
<label>切り取り/コピーインジケータの枠線の色:</label>
<div class="option-row">
<input type="text" style="margin:0 8px; width: 150px;" id="cutCopyIndicatorBorderColor" />
<input type="button" value="設定" id="setCutCopyIndicatorBorderColor"/>
</div>
</div>
</div>
</body>
</html>
var data = [{
"version":"12.0.0",
"tabStripRatio":0.6,
"sheetCount":1,
"sheets":{
"Sheet1":{
"name":"Sheet1",
"rowCount":114,
"columnCount":21,
"activeRow":2,
"activeCol":2,
"data":{
"dataTable":{
"0":{
"0":{
"value":"Salesperson",
"style":
{
"foreColor" : "#FFFFFF",
"backColor" : "#808080",
"hAlign" : 1
}
},
"1":{
"value":"Region",
"style": {
"foreColor" : "#FFFFFF",
"backColor" : "#808080",
"hAlign" : 1
}
},
"2":{
"value":"Sales",
"style": {
"foreColor" : "#FFFFFF",
"backColor" : "#808080",
"hAlign" : 1
}
}
},
"1":{
"0":{
"value":"Ally",
"style":{"hAlign" : 1}
},
"1":{
"value":"North",
"style":{"hAlign" : 1}
},
"2":{
"value":24234324,
"style":{"hAlign" : 1, "formatter": "$#,##0"}
}
},
"2":{
"0":{
"value":"Tom",
"style":{"hAlign" : 1}
},
"1":{
"value":"South",
"style":{"hAlign" : 1}
},
"2":{
"value":2342342,
"style":{"hAlign" : 1, "formatter": "$#,##0"}
}
},
"3":{
"0":{
"value":"Jack",
"style":{"hAlign" : 1}
},
"1":{
"value":"South",
"style":{"hAlign" : 1}
},
"2":{
"value":324234,
"style":{"hAlign" : 1, "formatter": "$#,##0"}
}
},
"4":{
"0":{
"value":"John",
"style":{"hAlign" : 1}
},
"1":{
"value":"West",
"style":{"hAlign" : 1}
},
"2":{
"value":2342443,
"style":{"hAlign" : 1, "formatter": "$#,##0"}
}
},
"5":{
"0":{
"value":"Lily",
"style":{"hAlign" : 1}
},
"1":{
"value":"North",
"style":{"hAlign" : 1}
},
"2":{
"value":2342342,
"style":{"hAlign" : 1, "formatter": "$#,##0"}
}
},
"6":{
"0":{
"value":"Linda",
"style":{"hAlign" : 1}
},
"1":{
"value":"East",
"style":{"hAlign" : 1}
},
"2":{
"value":5857858,
"style":{"hAlign" : 1, "formatter": "$#,##0"}
}
},
"7":{
"0":{
"value":"Will",
"style":{"hAlign" : 1}
},
"1":{
"value":"North",
"style":{"hAlign" : 1}
},
"2":{
"value":437587965,
"style":{"hAlign" : 1, "formatter": "$#,##0"}
}
}
}
},
"defaults": {"colHeaderRowHeight": 20, "colWidth": 120, "rowHeaderColWidth": 40, "rowHeight": 26},
}
}
}];
label {
display:inline-block;
}
.sizedLabel {
width: 180px;
}
hr {
border-color: #fff;
opacity: .2;
margin-top: 20px;
}
.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;
padding: 12px;
height: 100%;
box-sizing: border-box;
background: #fbfbfb;
overflow: auto;
}
.option-row {
font-size: 14px;
padding: 5px;
margin-top: 10px;
}
label {
margin-bottom: 6px;
}
input {
padding: 4px 6px;
}
input[type=button] {
margin-top: 6px;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}