Link in Angular Spreadsheet component

2 Nov 20235 minutes to read

Hyperlink is used to navigate to web links or cell reference within the sheet or to other sheets in Spreadsheet. You can use the allowHyperlink property to enable or disable hyperlink functionality.

  • The default value for allowHyperlink property is true.

You can insert a hyperlink in a worksheet cell for quick access to related information.

User Interface:

In the active spreadsheet, click the cell where you want to create a hyperlink. Insert hyperlink can be done by any of the following ways:

  • Select the INSERT tab in the Ribbon toolbar and choose the Link item.
  • Right-click the cell and then click Hyperlink item in the context menu, or you can press Ctrl+K.
  • Use the addHyperlink() method programmatically.

You can change an existing hyperlink in your workbook by changing its destination or the text that is used to represent it.

User Interface:

In the active spreadsheet, Select the cell that contains the hyperlink that you want to change. Editing the hyperlink while opening the dialog can be done by any one of the following ways:

  • Select the INSERT tab in the Ribbon toolbar and choose the Link item.
  • Right-click the cell and then click Edit Hyperlink item in the context menu, or you can press Ctrl+K.

In the Edit Link dialog box, make the changes that you want, and click UPDATE.

Performing this operation remove a single hyperlink without losing the display text.

User Interface:

In the active spreadsheet, click the cell where you want to remove a hyperlink. remove hyperlink can be done by any of the following ways:

  • Right-click the cell and then click Remove Hyperlink item in the context menu.
  • Use the removeHyperlink() method programmatically.

How to change target attribute

There is an event named beforeHyperlinkClick which triggers only on clicking hyperlink. You can customize where to open the hyperlink by using the target property in the arguments of that event.

import { Component, OnInit, ViewChild } from '@angular/core';
import { SpreadsheetComponent } from '@syncfusion/ej2-angular-spreadsheet';

@Component({
    selector: 'app-container',
    template: "<ejs-spreadsheet #spreadsheet (beforeHyperlinkClick)='beforeHyperlinkClick($event)'> <e-sheets> <e-sheet name='Monthly Budget' selectedRange='D13'>  <e-rows>  <e-row>  <e-cells>   <e-cell value='Item Name'></e-cell>   <e-cell value='Quantity'></e-cell>  <e-cell value='Price'></e-cell> <e-cell value='Amount'></e-cell> <e-cell value='Stock Detail'></e-cell>   <e-cell value='Website'></e-cell>   </e-cells>    </e-row> <e-row>     <e-cells>    <e-cell value='Casual Shoes'></e-cell>   <e-cell value='10'></e-cell>  <e-cell value='20'></e-cell>  <e-cell value='200'></e-cell> <e-cell value='OUT OF STOCK'></e-cell>  <e-cell value='Amazon' hyperlink='https://www.amazon.com/'></e-cell> </e-cells> </e-row>  <e-row> <e-cells> <e-cell value='Sports Shoes'></e-cell>  <e-cell value='20'></e-cell> <e-cell value='30'></e-cell>  <e-cell value='600'></e-cell>  <e-cell value='IN STOCK' hyperlink='Stock!A2:B2'></e-cell> <e-cell value='Overstack' hyperlink='https://www.overstock.com/'></e-cell> </e-cells> </e-row> <e-row>   <e-cells>   <e-cell value='Formal Shoes'></e-cell>   <e-cell value='20'></e-cell> <e-cell value='15'></e-cell>  <e-cell value='300'></e-cell>  <e-cell value='IN STOCK' hyperlink='Stock!A3:B3'></e-cell>  <e-cell value='Aliexpress' hyperlink='https://www.aliexpress.com/'></e-cell>  </e-cells>  </e-row>  <e-row>   <e-cells>    <e-cell value='Sandals & Floaters'></e-cell>  <e-cell value='15'></e-cell>  <e-cell value='20'></e-cell>   <e-cell value='300'></e-cell> <e-cell value='OUT OF STOCK'></e-cell>  <e-cell value='Alibaba' hyperlink='http://www.alibaba.com/'></e-cell>    </e-cells>    </e-row>  <e-row>  <e-cells>  <e-cell value='Flip-Flops & Slippers'></e-cell>   <e-cell value='30'></e-cell> <e-cell value='10'></e-cell>  <e-cell value='300'></e-cell>    <e-cell value='IN STOCK' hyperlink='Stock!A4:B4'></e-cell>  <e-cell value='Taobao' hyperlink='https://taobao.com/'></e-cell>   </e-cells>   </e-row>  </e-rows>  <e-columns>     <e-column [width]=110></e-column>     <e-column [width]=115></e-column> <e-column [width]=110></e-column> <e-column [width]=100></e-column>    <e-column [width]=120></e-column> <e-column [width]=140></e-column> </e-columns>  </e-sheet> <e-sheet name='Stock' selectedRange='D13'>  <e-rows>  <e-row> <e-cells>    <e-cell value='Item Name'></e-cell> <e-cell value='Available Count'></e-cell>     </e-cells> </e-row>  <e-row> <e-cells>  <e-cell value='Casual Shoes'></e-cell> <e-cell value='10'></e-cell>   </e-cells>  </e-row> <e-row>   <e-cells>  <e-cell value='Sports Shoes'></e-cell>  <e-cell value='20'></e-cell>  </e-cells> </e-row>  <e-row>  <e-cells> <e-cell value='Formal Shoes'></e-cell>  <e-cell value='20'></e-cell></e-cells></e-row>  <e-row> <e-cells>  <e-cell value='Sandals & Floaters'></e-cell><e-cell value='15'></e-cell>  </e-cells>  </e-row><e-row> <e-cells> <e-cell value='Flip-Flops & Slippers'></e-cell>  <e-cell value='30'></e-cell> </e-cells> </e-row> </e-rows> <e-columns> <e-column [width]=110></e-column><e-column [width]=115></e-column></e-columns></e-sheet></e-sheets></ejs-spreadsheet>"
})
export class AppComponent implements OnInit {

    @ViewChild('spreadsheet') public spreadsheetObj?: SpreadsheetComponent;
    ngOnInit(): void {
    }
    beforeHyperlinkClick (args : any) {
        args.target = '_self'; //change target attribute
    }
}
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { SpreadsheetAllModule } from '@syncfusion/ej2-angular-spreadsheet';
import { AppComponent } from './app.component';

/**
 * Module
 */
@NgModule({
    imports: [
        BrowserModule,
        SpreadsheetAllModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule { }
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { AppModule } from './app.module';

import 'zone.js';
enableProdMode();
platformBrowserDynamic().bootstrapModule(AppModule);

Limitations

  • Inserting hyperlink not supported for multiple ranges.

Note

You can refer to our Angular Spreadsheet feature tour page for its groundbreaking feature representations. You can also explore our Angular Spreadsheet example to knows how to present and manipulate data.

See Also