{"id":487,"date":"2012-09-05T01:20:13","date_gmt":"2012-09-05T01:20:13","guid":{"rendered":"http:\/\/garysieling.com\/blog\/?p=487"},"modified":"2012-09-05T01:20:13","modified_gmt":"2012-09-05T01:20:13","slug":"extjs-tooltip-example","status":"publish","type":"post","link":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/","title":{"rendered":"ExtJS Tooltip Example"},"content":{"rendered":"<p><strong>Problem<\/strong><br \/>\nYou want to display a grid with a tooltip.<\/p>\n<p><strong>Tested in ExtJS Version<\/strong><br \/>\n4.1.1<\/p>\n<p><strong>Screenshot<\/strong><br \/>\n<a href=\"http:\/\/172.104.26.128\/wp-content\/uploads\/2012\/09\/ext-tooltip-example.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-488\" title=\"ext tooltip example\" src=\"http:\/\/172.104.26.128\/wp-content\/uploads\/2012\/09\/ext-tooltip-example.png\" alt=\"\" width=\"473\" height=\"202\" srcset=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2012\/09\/ext-tooltip-example.png 473w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2012\/09\/ext-tooltip-example-300x128.png 300w\" sizes=\"(max-width: 473px) 100vw, 473px\" \/><\/a><\/p>\n<p><strong>Solution<\/strong><br \/>\nSet the &#8220;tip&#8221; property on the GridPanel&#8217;s view (panel.getView().tip).<\/p>\n<pre lang=\"Javascript\">view = this.getView();\nview.tip = Ext.create('Ext.tip.ToolTip', {\n\ttarget: view.el,\n\tdelegate: view.itemSelector,\n\ttrackMouse: true,\n\trenderTo: Ext.getBody(),\n\tlisteners: {\n     \t\tbeforeshow: function updateTipBody(tip) {\n     \t\t\t tip.update(\"Tooltip!\");\n        }\n}<\/pre>\n<p><strong>Discussion<\/strong><br \/>\nThe example ExtJS provides in their documentation did not work for me. In their example, they run this code in a the render event, which they set after the grid object is created- for whatever reason this only works in afterrender.<\/p>\n<p>You can retrieve the highlighted row inside the beforeshow event using view.getRecord(tip.triggerElement), but it is not clear how to determine which column the tooltip is rendered on.<\/p>\n<p>See the <a href=\"http:\/\/garysieling.com\/blog\/extjs-listview-example\">ExtJS GridView example<\/a> for further discussion.<\/p>\n<p>The full source is below.<\/p>\n<pre lang=\"Javascript\">Ext.onReady(function() {\nvar trackStore = new Ext.data.Store({\n  storeId: 'soundCloudStore',\n\n    proxy: {\n      type: 'ajax',\n      url: 'blues.json',\n      reader: {\n        type: 'json',\n        idProperty: 'id'\n      }\n    },\n    fields:['duration', 'genre', 'created_at', 'title', 'id']\n});\n\ntrackStore.load(\n  function() { \n    Ext.create('Ext.grid.Panel', {\n      title: 'Tracks',\n      store: trackStore,\n      stripeRows: false,\n      columns: [\n        { header: 'Title', dataIndex: 'title' },\n        { header: 'Duration',  dataIndex: 'duration' },\n        { header: 'Genre', dataIndex: 'genre' },\n        { header: 'Created At', dataIndex: 'created_at'}\n      ],\n      height: 200,\n      width: 475,\n      renderTo: Ext.getBody(),\n      listeners: {\n        afterrender: function( eOpts )\n        {\n          view = this.getView();\n          view.tip = Ext.create('Ext.tip.ToolTip', {\n            target: view.el,\n            delegate: view.itemSelector,\n            trackMouse: true,\n            renderTo: Ext.getBody(),\n            listeners: {\n              beforeshow: function updateTipBody(tip) {\n              tip.update(\"Tooltip!\");\n            }\n          }\n        });\n      }\n    }\n  });\n});\n});<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the &#8220;tip&#8221; property on the GridPanel&#8217;s view (panel.getView().tip). view = this.getView(); view.tip = Ext.create(&#8216;Ext.tip.ToolTip&#8217;, { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(&#8220;Tooltip!&#8221;); } } Discussion The example ExtJS provides &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;ExtJS Tooltip Example&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[4],"tags":[213,216,218,224,502],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the &quot;tip&quot; property on the GridPanel&#039;s view (panel.getView().tip). view = this.getView(); view.tip = Ext.create(&#039;Ext.tip.ToolTip&#039;, { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(&quot;Tooltip!&quot;); } } Discussion The example ExtJS provides\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"gary\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Gary Sieling - Software Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"ExtJS Tooltip Example - Gary Sieling\" \/>\n\t\t<meta property=\"og:description\" content=\"Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the &quot;tip&quot; property on the GridPanel&#039;s view (panel.getView().tip). view = this.getView(); view.tip = Ext.create(&#039;Ext.tip.ToolTip&#039;, { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(&quot;Tooltip!&quot;); } } Discussion The example ExtJS provides\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-09-05T01:20:13+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2012-09-05T01:20:13+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"ExtJS Tooltip Example - Gary Sieling\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the &quot;tip&quot; property on the GridPanel&#039;s view (panel.getView().tip). view = this.getView(); view.tip = Ext.create(&#039;Ext.tip.ToolTip&#039;, { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(&quot;Tooltip!&quot;); } } Discussion The example ExtJS provides\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#blogposting\",\"name\":\"ExtJS Tooltip Example - Gary Sieling\",\"headline\":\"ExtJS Tooltip Example\",\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/172.104.26.128\\\/wp-content\\\/uploads\\\/2012\\\/09\\\/ext-tooltip-example.png\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#articleImage\"},\"datePublished\":\"2012-09-05T01:20:13+00:00\",\"dateModified\":\"2012-09-05T01:20:13+00:00\",\"inLanguage\":\"en-US\",\"commentCount\":3,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#webpage\"},\"articleSection\":\"Code Examples, extjs, extjs 4 examples, extjs examples, extjs tutorials, sencha\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"name\":\"Code Examples\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"position\":2,\"name\":\"Code Examples\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#listItem\",\"name\":\"ExtJS Tooltip Example\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#listItem\",\"position\":3,\"name\":\"ExtJS Tooltip Example\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"name\":\"Code Examples\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/\",\"name\":\"gary\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"gary\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#webpage\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/\",\"name\":\"ExtJS Tooltip Example - Gary Sieling\",\"description\":\"Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the \\\"tip\\\" property on the GridPanel's view (panel.getView().tip). view = this.getView(); view.tip = Ext.create('Ext.tip.ToolTip', { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(\\\"Tooltip!\\\"); } } Discussion The example ExtJS provides\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extjs-tooltip-example\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"datePublished\":\"2012-09-05T01:20:13+00:00\",\"dateModified\":\"2012-09-05T01:20:13+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"ExtJS Tooltip Example - Gary Sieling","description":"Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the \"tip\" property on the GridPanel's view (panel.getView().tip). view = this.getView(); view.tip = Ext.create('Ext.tip.ToolTip', { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(\"Tooltip!\"); } } Discussion The example ExtJS provides","canonical_url":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#blogposting","name":"ExtJS Tooltip Example - Gary Sieling","headline":"ExtJS Tooltip Example","author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"http:\/\/172.104.26.128\/wp-content\/uploads\/2012\/09\/ext-tooltip-example.png","@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#articleImage"},"datePublished":"2012-09-05T01:20:13+00:00","dateModified":"2012-09-05T01:20:13+00:00","inLanguage":"en-US","commentCount":3,"mainEntityOfPage":{"@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#webpage"},"isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#webpage"},"articleSection":"Code Examples, extjs, extjs 4 examples, extjs examples, extjs tutorials, sencha"},{"@type":"BreadcrumbList","@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.garysieling.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","name":"Code Examples"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","position":2,"name":"Code Examples","item":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#listItem","name":"ExtJS Tooltip Example"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#listItem","position":3,"name":"ExtJS Tooltip Example","previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","name":"Code Examples"}}]},{"@type":"Organization","@id":"https:\/\/www.garysieling.com\/blog\/#organization","name":"Gary Sieling","description":"Software Engineer","url":"https:\/\/www.garysieling.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author","url":"https:\/\/www.garysieling.com\/blog\/author\/gary\/","name":"gary","image":{"@type":"ImageObject","@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g","width":96,"height":96,"caption":"gary"}},{"@type":"WebPage","@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#webpage","url":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/","name":"ExtJS Tooltip Example - Gary Sieling","description":"Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the \"tip\" property on the GridPanel's view (panel.getView().tip). view = this.getView(); view.tip = Ext.create('Ext.tip.ToolTip', { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(\"Tooltip!\"); } } Discussion The example ExtJS provides","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/#breadcrumblist"},"author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"creator":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"datePublished":"2012-09-05T01:20:13+00:00","dateModified":"2012-09-05T01:20:13+00:00"},{"@type":"WebSite","@id":"https:\/\/www.garysieling.com\/blog\/#website","url":"https:\/\/www.garysieling.com\/blog\/","name":"Gary Sieling","description":"Software Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Gary Sieling - Software Engineer","og:type":"article","og:title":"ExtJS Tooltip Example - Gary Sieling","og:description":"Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the &quot;tip&quot; property on the GridPanel's view (panel.getView().tip). view = this.getView(); view.tip = Ext.create('Ext.tip.ToolTip', { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(&quot;Tooltip!&quot;); } } Discussion The example ExtJS provides","og:url":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/","article:published_time":"2012-09-05T01:20:13+00:00","article:modified_time":"2012-09-05T01:20:13+00:00","twitter:card":"summary_large_image","twitter:title":"ExtJS Tooltip Example - Gary Sieling","twitter:description":"Problem You want to display a grid with a tooltip. Tested in ExtJS Version 4.1.1 Screenshot Solution Set the &quot;tip&quot; property on the GridPanel's view (panel.getView().tip). view = this.getView(); view.tip = Ext.create('Ext.tip.ToolTip', { target: view.el, delegate: view.itemSelector, trackMouse: true, renderTo: Ext.getBody(), listeners: { beforeshow: function updateTipBody(tip) { tip.update(&quot;Tooltip!&quot;); } } Discussion The example ExtJS provides"},"aioseo_meta_data":{"post_id":"487","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2023-02-04 16:07:43","updated":"2026-07-06 00:45:54","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/\" title=\"Code Examples\">Code Examples<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tExtJS Tooltip Example\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.garysieling.com\/blog"},{"label":"Code Examples","link":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/"},{"label":"ExtJS Tooltip Example","link":"https:\/\/www.garysieling.com\/blog\/extjs-tooltip-example\/"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/487"}],"collection":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/comments?post=487"}],"version-history":[{"count":0,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/487\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/media?parent=487"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/categories?post=487"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/tags?post=487"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}