{"id":73070,"date":"2017-01-30T14:55:00","date_gmt":"2017-01-30T14:55:00","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=73070"},"modified":"2024-07-30T11:50:55","modified_gmt":"2024-07-30T11:50:55","slug":"implementation-tooltip-odoo","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/","title":{"rendered":"Implementation of tooltip for Odoo"},"content":{"rendered":"<p><a href=\"https:\/\/webkul.com\/odoo-implementation-services\/\" target=\"_blank\" rel=\"noopener\">Odoo implementation<\/a> tooltip is a graphical user interface which is used to explore the information or hints in a smarter way using a little hover box.<\/p>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">IMPLEMENTATION<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>We will go step by step to cover process of implementation for Tooltip<\/p>\n<div class=\"panel panel-info\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">DEPENDENCIES<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>The<strong>\u00a0<\/strong>module should depend on &#8220;<strong>web_tour&#8221; module.<\/strong><\/p>\n<p><strong>__manifest__.py<\/strong> file :<\/p>\n<pre class=\"brush:py\"> 'depends': ['web_tour'],<\/pre>\n<\/div>\n<\/div>\n<div class=\"panel panel-success\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">MAKING XMLID OF MENU<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<div>\n<p>Make the xmlid of menu required by the &#8220;Module tour&#8221; available in the web client.<\/p>\n<p>The xmlid\u00a0of the menu\u00a0will be used to start the tour\u00a0from that menu.<\/p>\n<p><strong>my_module_tour.xml<\/strong>:<\/p>\n<pre class=\"brush:xml\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;odoo&gt;\n    &lt;!-- Make the xmlid of menus required by the My Module tour available in webclient --&gt;\n    &lt;record id=\"my_module.my_module_parent_menu\" model=\"ir.ui.menu\"&gt;\n        &lt;field name=\"load_xmlid\" eval=\"True\"\/&gt;\n    &lt;\/record&gt;\n&lt;\/odoo&gt;<\/pre>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"panel panel-success\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">WRITE JS<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>Define a function with name <strong>my_module.tour<\/strong>.<\/p>\n<p>Below JavaScript code will create the tour of the tooltip.<\/p>\n<p>Every step of this tooltip tour will be separated in a section closed with\u00a0curly braces. The first section will start with menu xmlid.<\/p>\n<p>Every section has four main parameters.<\/p>\n<p><strong>trigger<\/strong>: this is the\u00a0module xmlid(e.g class id)<\/p>\n<p><strong>extra_trigger<\/strong>: this is also a xmlid.<\/p>\n<p><strong>content<\/strong>: this is the information you wants to show on hover of the mouse on the tooltip.<\/p>\n<p><strong>position<\/strong>:\u00a0this will define the position of tooltip toggler\u00a0(\u00a0<strong>top, right<\/strong>, <strong>bottom<\/strong>, <strong>left<\/strong>).<\/p>\n<p>finally, our <strong>tour.js<\/strong> file will look like:<\/p>\n<p>&#8220;<strong>tour.js&#8221;:<\/strong><\/p>\n<pre class=\"brush:js\">odoo.define('my_module.tour', function(require) {\n\"use strict\";\n\nvar core = require('web.core');\nvar tour = require('web_tour.tour');\n\nvar _t = core._t;\n\ntour.register('my_module_tour', {\n    url: \"\/web\",\n}, [tour.STEPS.MENU_MORE, {\n    trigger: '.o_app[data-menu-xmlid=\"my_module.my_module_parent_menu\"], .oe_menu_toggler[data-menu-xmlid=\"my_module.my_module_parent_menu\"]',\n    content: _t('Explore the information in smarter way...'),\n    position: 'bottom',\n} \n, {\n    trigger: \".oe_link\",\n    extra_trigger: '.oe_highlight',\n    content:  _t(\"Information for second step of tour.\"),\n    position: \"right\"\n}\n, {\n    trigger: \".o_form_required\",\n    extra_trigger: '.oe_highlight',\n    content:  _t(\"Information for third step of tour.\"),\n    position: \"top\"\n}\n, {\n    trigger: \".o_address_street\",\n    extra_trigger: '.oe_highlight',\n    content:  _t(\"Information for next and so on\"),\n    position: \"left\"\n}\n\n\n]);\n\n});<\/pre>\n<\/div>\n<\/div>\n<div class=\"panel panel-success\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">TEMPLATE FILE<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<div>\n<p>Create the template file.<\/p>\n<p>This template file will inherit web.assets_backend template and here we will include our <strong>tour.js<\/strong> file<\/p>\n<p><strong>my_module_templates.xml\u00a0<\/strong>file:<\/p>\n<pre class=\"brush:xml\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;odoo&gt;\n        &lt;template id=\"assets_backend\" name=\"mob assets\" inherit_id=\"web.assets_backend\"&gt;\n            &lt;xpath expr=\".\" position=\"inside\"&gt;\n                &lt;script type=\"text\/javascript\" src=\"\/my_module\/static\/src\/js\/tour.js\"&gt;&lt;\/script&gt;\n            &lt;\/xpath&gt;\n        &lt;\/template&gt;\n&lt;\/odoo&gt;\n<\/pre>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">TAKE THE TOUR<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>Everything has been done successfully.<\/p>\n<p>Now it&#8217;s time to take the tour. After Installation of the module in the bottom of our parent menu we will see the tooltip toggler:<br \/>\n<a href=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-3.jpg\"><br \/>\n<img decoding=\"async\" class=\"alignnone size-medium wp-image-73151\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-3.jpg\" alt=\"Tooltip Image\" width=\"300\" height=\"56\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-3.jpg 664w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-3-250x47.jpg 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-3-300x56.jpg 300w\" sizes=\"(max-width: 300px) 100vw, 300px\" loading=\"lazy\" \/><\/a><\/p>\n<p>When we hover the mouse over this tooltip we will see the hidden information in little hover box:<br \/>\n<a href=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-4.jpg\"><br \/>\n<img decoding=\"async\" class=\"alignnone size-medium wp-image-73152\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-4.jpg\" alt=\"Tooltip Image\" width=\"300\" height=\"65\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-4.jpg 575w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-4-250x54.jpg 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/Apps-Odoo-4-300x65.jpg 300w\" sizes=\"(max-width: 300px) 100vw, 300px\" loading=\"lazy\" \/><\/a><\/p>\n<p>That&#8217;s all for implementation of a tooltip. Now enjoy by taking the tour as per your wish.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Odoo implementation tooltip is a graphical user interface which is used to explore the information or hints in a smarter way using a little hover box. IMPLEMENTATION We will go step by step to cover process of implementation for Tooltip DEPENDENCIES The\u00a0module should depend on &#8220;web_tour&#8221; module. __manifest__.py file : &#8216;depends&#8217;: [&#8216;web_tour&#8217;], MAKING XMLID OF <a href=\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":130,"featured_media":45511,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2007],"tags":[4403,3867,4400,4401,4402,4404],"class_list":["post-73070","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-odoo","tag-implementation-of-tooltip-for-odoo","tag-odoo10","tag-tooltip","tag-tooltip-for-odoo10","tag-tooltip-in-odoo","tag-tooltip-tour"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Implementation of tooltip for Odoo<\/title>\n<meta name=\"description\" content=\"The tooltip is a graphical user interface which is used to explore the information or hints in a smarter way using a little hover box.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Implementation of tooltip for Odoo\" \/>\n<meta property=\"og:description\" content=\"The tooltip is a graphical user interface which is used to explore the information or hints in a smarter way using a little hover box.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-01-30T14:55:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-30T11:50:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Saleem Ali\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Saleem Ali\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/\"},\"author\":{\"name\":\"Saleem Ali\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/b3d3c6a1bb24ef313df7554dfe134957\"},\"headline\":\"Implementation of tooltip for Odoo\",\"datePublished\":\"2017-01-30T14:55:00+00:00\",\"dateModified\":\"2024-07-30T11:50:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/\"},\"wordCount\":299,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"keywords\":[\"Implementation of tooltip for odoo\",\"odoo10\",\"Tooltip\",\"Tooltip for Odoo10\",\"Tooltip in Odoo\",\"tooltip tour\"],\"articleSection\":[\"Odoo\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/\",\"url\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/\",\"name\":\"Implementation of tooltip for Odoo\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"datePublished\":\"2017-01-30T14:55:00+00:00\",\"dateModified\":\"2024-07-30T11:50:55+00:00\",\"description\":\"The tooltip is a graphical user interface which is used to explore the information or hints in a smarter way using a little hover box.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Implementation of tooltip for Odoo\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/b3d3c6a1bb24ef313df7554dfe134957\",\"name\":\"Saleem Ali\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/28b35b75cbf1062cc5f4efd001ebbefa023f18e966b04bea64e2887990074a24?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/28b35b75cbf1062cc5f4efd001ebbefa023f18e966b04bea64e2887990074a24?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Saleem Ali\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/saleem-ali562\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Implementation of tooltip for Odoo","description":"The tooltip is a graphical user interface which is used to explore the information or hints in a smarter way using a little hover box.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/","og_locale":"en_US","og_type":"article","og_title":"Implementation of tooltip for Odoo","og_description":"The tooltip is a graphical user interface which is used to explore the information or hints in a smarter way using a little hover box.","og_url":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-01-30T14:55:00+00:00","article_modified_time":"2024-07-30T11:50:55+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","type":"image\/png"}],"author":"Saleem Ali","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Saleem Ali","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/"},"author":{"name":"Saleem Ali","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/b3d3c6a1bb24ef313df7554dfe134957"},"headline":"Implementation of tooltip for Odoo","datePublished":"2017-01-30T14:55:00+00:00","dateModified":"2024-07-30T11:50:55+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/"},"wordCount":299,"commentCount":4,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","keywords":["Implementation of tooltip for odoo","odoo10","Tooltip","Tooltip for Odoo10","Tooltip in Odoo","tooltip tour"],"articleSection":["Odoo"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/","url":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/","name":"Implementation of tooltip for Odoo","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","datePublished":"2017-01-30T14:55:00+00:00","dateModified":"2024-07-30T11:50:55+00:00","description":"The tooltip is a graphical user interface which is used to explore the information or hints in a smarter way using a little hover box.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/implementation-tooltip-odoo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Implementation of tooltip for Odoo"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/b3d3c6a1bb24ef313df7554dfe134957","name":"Saleem Ali","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/28b35b75cbf1062cc5f4efd001ebbefa023f18e966b04bea64e2887990074a24?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/28b35b75cbf1062cc5f4efd001ebbefa023f18e966b04bea64e2887990074a24?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Saleem Ali"},"url":"https:\/\/webkul.com\/blog\/author\/saleem-ali562\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/73070","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/130"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=73070"}],"version-history":[{"count":20,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/73070\/revisions"}],"predecessor-version":[{"id":455356,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/73070\/revisions\/455356"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/45511"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=73070"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=73070"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=73070"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}