Access URL

This sample shows a simple URL hyperlink, which opens up a specified webpage when the hyperlink in the worksheet is clicked on.

You can open up a website link by clicking a hyperlink in a worksheet. You can add a link address like this: You can also open a file though the browser by clicking a link that links to a file. If your hyperlink links to a local file, the prefix file:// is necessary.
window.onload = initFunction; function initFunction() { var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"), {sheetCount: 2}); var sheet = spread.getActiveSheet(); spread.suspendPaint(); sheet.fromJSON(urlAddressJsonData); sheet.setHyperlink(0, 1, { url: "www.google.com", tooltip: "Google" }); sheet.setHyperlink(1, 1, { url: "https://www.microsoft.com", tooltip: "Microsoft" }); sheet.setHyperlink(2, 1, { url: "www.baidu.com", tooltip: "Baidu" }); sheet.setHyperlink(3, 1, { url: "https://www.facebook.com", tooltip: "Facebook" }); sheet.setHyperlink(4, 1, { url: "https://www.nike.com", tooltip: "Nike" }); sheet.setHyperlink(5, 1, { url: "https://www.apple.com", tooltip: "Apple" }); sheet.setHyperlink(6, 1, { url: "https://www.spotify.com", tooltip: "Spotify" }); sheet.setHyperlink(7, 1, { url: "https://www.buzzfeed.com", tooltip: "Buzzfeed" }); sheet.setHyperlink(8, 1, { url: "https://www.bankofamerica.com", tooltip: "Bank of America" }); sheet.setHyperlink(9, 1, { url: "https://www.bcg.com", tooltip: "Boston Consulting Group" }); spread.resumePaint(); }
<!doctype html> <html style="height:100%;font-size:14px;"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/js/license.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/data/hyperlink-data.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></body> </html>
.sample-tutorial { position: relative; height: 100%; overflow: hidden; } .sample-spreadsheets { width: 100%; height: 100%; overflow: hidden; float: left; } .options-container { float: right; padding: 12px; height: 100%; width: 100%; box-sizing: border-box; background: #fbfbfb; overflow: auto; } .option-row { font-size: 14px; padding: 5px; } input { display:block; width: 100%; margin: 8px 0; box-sizing: border-box; } label, input { padding: 4px 6px; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; } #drawUnderline { display: inline-block; width: 30px; } #drawUnderlineLabel { display: inline-block; } #allowAutoCreateHyperlink { display: inline-block; width: 30px; }