シート

SpreadJSはシート、タブストリップ、スクロールバーなど、さまざまな部分から成ります。その中核となるのがシートです。シートは必要に応じてカスタマイズできます。

ワークシートにアクセスするには、WorkbookオブジェクトのgetSheetメソッドでワークブックのインデックスを使用するか、getSheetFromNameメソッドでワークシートのタブ名を使用します。例として: WorkbookオブジェクトのgetActiveSheetメソッドを使用して、現在のアクティブなワークシートのインスタンスを取得します。 アクティブなワークシートを変更するには、setActiveSheetIndexメソッドを使用して、目的のシートのインデックスを指定します。 例として: ワークシートへの参照を取得したら、デモに示されるようなカスタマイズにそれを使用できます。 ワークブックシートを操作する、その他の便利な方法: addSheet:ワークブックの特定の位置に名前付きシートを追加します。 getSheetCount:ワークブック内のシートの数を取得し、それを使用してワークブックにシートを追加します。 removeSheetおよびclearSheets:インデックスでシートを削除するか、ワークブックのすべてのシートをクリアします。 getActiveSheetIndex:アクティブなシートのインデックスを取得します。 changeSheetIndex:アクティブなシートを別のインデックスに変更します。
window.onload = function() { var spread = new GC.Spread.Sheets.Workbook(_getElementById('ss')); var spreadNS = GC.Spread.Sheets; spread.setSheetCount(3); initSpread(spread); spread.bind(spreadNS.Events.ActiveSheetChanged, function(e, args) { _getElementById('activeSheetIndex').value = spread.getActiveSheetIndex(); _getElementById('changeSheetIndexName').value = spread.getActiveSheet().name(); }); _getElementById('btnAddSheet').addEventListener('click',function() { var activeIndex = spread.getActiveSheetIndex(); if (activeIndex >= 0) { spread.addSheet(activeIndex+1); spread.setActiveSheetIndex(activeIndex+1); } else{ spread.addSheet(0); spread.setActiveSheetIndex(0); } }); _getElementById('btnRemoveSheet').addEventListener('click',function() { var activeIndex = spread.getActiveSheetIndex(); if (activeIndex >= 0) { spread.removeSheet(activeIndex); spread.setActiveSheetIndex(activeIndex); } }); _getElementById('btnClearSheets').addEventListener('click',function() { spread.clearSheets(); }); _getElementById('btnSetActiveSheetIndex').addEventListener('click',function() { var index = _getElementById('activeSheetIndex').value; if (!isNaN(index)) { index = parseInt(index); if (0 <= index && index < spread.getSheetCount()) { spread.setActiveSheetIndex(index); } } }); _getElementById('btnChangeSheetIndex').addEventListener('click',function() { var sheetName = _getElementById('changeSheetIndexName').value; var targetIndex = _getElementById('changeSheetIndexTargetIndex').value; if (!isNaN(targetIndex)) { targetIndex = parseInt(targetIndex); if (0 <= targetIndex && targetIndex <= spread.getSheetCount()) { spread.changeSheetIndex(sheetName, targetIndex); } } }); }; function initSpread(spread) { } 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> <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>以下のボタンを使用して、現在のワークブックからすべてのシートを追加、削除、またはクリアします。</label> </div> <div class="option-row"> <input type="button" value="シートを追加" id="btnAddSheet"/> <input type="button" value="シートを削除" id="btnRemoveSheet"/> <input type="button" value="シートをクリア" id="btnClearSheets"/> </div> <div class="option-row"> <label>アクティブシートのインデックス</label> <input type="text" id="activeSheetIndex" value="0"/> <input type="button" id="btnSetActiveSheetIndex" value="設定"/> </div> <div class="option-row"> <label>このボタンをクリックすると、現在のアクティブなシートが、指定したインデックスのシートに切り替わります。</label> </div> <div class="option-row"> <label>変更するシートのインデックス</label> <label>シートの名前:</label> <input type="text" id="changeSheetIndexName" value="Sheet1"/> <label>ターゲットのインデックス:</label> <input type="text" id="changeSheetIndexTargetIndex" value="2"/> <input type="button" id="btnChangeSheetIndex" value="設定"/> </div> </div> </div> </body> </html>
.sample-tutorial { position: relative; height: 100%; overflow: hidden; } .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 { display: block; margin-bottom: 6px; } input { padding: 4px 6px; } input[type=button] { margin-top: 6px; display: block; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; }