Set tool tip to the commands in Vue Toolbar component
16 Mar 20232 minutes 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 fromej2-popups
,and initialize the Tooltip with the Toolbar target. Refer to the following code example:
<template>
<div id="app">
<div id = 'Tooltip' id ='Toolbar' :created="oncreated">
<ejs-toolbar >
<e-items>
<e-item text='Cut'></e-item>
<e-item text='Copy'></e-item>
<e-item text='Paste'></e-item>
<e-item type='Separator'></e-item>
<e-item text='Bold'></e-item>
<e-item text='Italic'></e-item>
<e-item text='Underline'></e-item>
</e-items>
</ejs-toolbar>
</div>
</div>
</template>
<script>
import Vue from 'vue';
import { ToolbarPlugin } from "@syncfusion/ej2-vue-navigations";
import { Tooltip } from "@syncfusion/ej2-popups";
Vue.use(ToolbarPlugin);
export default {
name: 'app',
data() {
},
methods:{
oncreated: function(e){
var tooltip = new Tooltip({ target: '#Toolbar',content: 'This is Toolbar'});
tooltip.appendTo('#Tooltip');
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-buttons/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-popups/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-navigations/styles/material.css";
</style>