Search results

Set Essential JS 2 Tooltip to the commands in JavaScript Toolbar control

08 May 2023 / 1 minute to read

The tooltipText property of the Toolbar item is used to set the HTML Tooltip to the commands that can be viewed as hint texts on mouse hover.

To change the tooltipText to ej2-tooltip component:

  • Import the Tooltip module from ej2-popups,and initialize the Tooltip with the Toolbar target. Refer to the following code example:
Source
Preview
index.ts
index.html
Copied to clipboard
import { Tooltip } from '@syncfusion/ej2-popups';
import { Toolbar } from '@syncfusion/ej2-navigations';

let toolbar: Toolbar = new Toolbar({
width: 300,
items: [
    { text: "Cut", tooltipText: 'Cut' },
    { text: "Copy", tooltipText: 'Copy' },
    { text: "Paste", tooltipText: 'Paste' },
    { text: "Undo", tooltipText: 'Undo' },
    { text: "Redo", tooltipText: 'Redo' }
]
});
toolbar.appendTo('#element');
let tooltip: Tooltip = new Tooltip({
  target: '#element [title]',
 });
tooltip.appendTo('#Tooltip');
Copied to clipboard
<!DOCTYPE html>
<html lang="en">

<head>
            
    <title>Essential JS 2 Toolbar</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="description" content="Typescript Toolbar Controls" />
    <meta name="author" content="Syncfusion" />
    <link href="index.css" rel="stylesheet" />
    <link href="//cdn.syncfusion.com/ej2/21.2.3/material.css" rel="stylesheet" />
    <link href="https://ej2.syncfusion.com/angular/demos/src/toolbar/toolbar.component.css" rel="stylesheet" />
    <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
    <script src="systemjs.config.js"></script>
</head>

<body>
    <div id='loader'>LOADING....</div>
    <div id='container'>
        <div id="Tooltip"><div id='element'></div></div>
        <br/><br/>
        <div id='result'></div>
    </div>
</body>

</html>