sheets.rows.cells.linkString
The hyperlink (URL) of the cell.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
name: "MySheet",
rows: [{
cells: [{
value: "Visit Telerik",
link: "https://www.telerik.com"
}, {
value: "Email Us",
link: "mailto:info@telerik.com"
}]
}]
}]
});
</script>
In this article