SpreadJS Documentation > Developer's Guide > Managing the User Interface > Working with Cell Types > Setting a Hyperlink Cell |
You can use a hyperlink cell to contain text that functions as a single hyperlink.
You can set the color of the hyperlink and change the color after the link has been accessed. You can display text in the cell that is different from the hyperlink. You can also display a tooltip.
Clicking the link opens a new page and navigates to the link URL.
The following code creates a hyperlink cell.
JavaScript |
Copy Code
|
---|---|
var cellType = new GcSpread.Sheets.HyperLinkCellType(); cellType.linkColor("blue"); cellType.visitedLinkColor("#FF2235"); cellType.text("GrapeCity"); cellType.linkToolTip("Company Web Site"); activeSheet.getCell(1, 1).cellType(cellType).value("http://spread.grapecity.com/"); activeSheet.getRow(1).height(30); |