{"id":1487,"date":"2022-02-23T18:32:26","date_gmt":"2022-02-23T13:02:26","guid":{"rendered":"https:\/\/store.ksolves.com\/blog\/?p=1487"},"modified":"2022-03-25T16:15:16","modified_gmt":"2022-03-25T10:45:16","slug":"the-new-odoo-owl-framework-for-new-generation-of-business","status":"publish","type":"post","link":"https:\/\/store.ksolves.com\/blog\/odoo\/the-new-odoo-owl-framework-for-new-generation-of-business","title":{"rendered":"The Odoo OWL Framework For New Generation of Business"},"content":{"rendered":"<p>Every other person or business is operating on Web Applications. Web applications are used for operating websites and running a business. Most of the industries use Odoo ERP as their core business platform.<\/p>\n<p>The design of Odoo is based on JavaScript, which makes it look appealing and attractive. The look of a web application tells how user-friendly it is. Till now, Odoo was working with the JavaScript Framework, but now it has decided to move to OWL.<\/p>\n<h3><b>Introduction to OWL Framework<\/b><\/h3>\n<p>OWL is a type of Framework that helps change the interface of Odoo. As the frontend of Odoo is based on Backbone JavaScript (JS), it has stopped supporting upgrades and migrations. Therefore, Odoo decided to switch its frontend from Backbone JS to OWL.<\/p>\n<p>OWL defines as Odoo Web Library, designed with the intention to replace the current client-side technology and offer a new UI.<\/p>\n<p>OWL is a small UI framework approx 18kb gzipped in size. It will be available in Odoo &gt;V16 fully and half present on Odoo V15. It is written in Typescript, combining the best components from React and Vue.<\/p>\n<p>React and Vue are JavaScript-based toolkit systems used to create a dynamic user interface.<\/p>\n<h3><b>Why OWL Framework?<\/b><\/h3>\n<p>The question that arises is that when Odoo was successfully working on JS, then why there is a need to opt for OWL (Odoo Web Library).<\/p>\n<p>The current Odoo Javascript framework is easy to use and awesome, but it is not up to the mark. Meaning, it is not fully standing on Odoo\u2019s requirements. It is not completely optimized and can increase the response time.<\/p>\n<p>To overcome these challenges, Odoo introduces the OWL Framework, whose main features are:<\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\">Declarative component system.<\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\">Hooks.<\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\">Fined grained reactivity mechanism like Vue<\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\">Asynchronous rendering.<\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\">Fragments.<\/li>\n<\/ul>\n<h3><b>OWL Components<\/b><\/h3>\n<p>Components are JavaScripts Functions and Classes that imply how a UI will appear on the screen. OWL uses components as its core elements similar to React JS Framework. Mainly, OWL uses JS classes to build its components and it is dynamic as well.<\/p>\n<p>The below example shows how to create components in OWL.<\/p>\n<h4><b>EXAMPLE:<\/b><\/h4>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>JS Code<\/b><\/li>\n<\/ul>\n<div class=\"card code-card p-4\">\n<p>\/\/ In this example, we show how components can be defined and created.<\/p>\n<p><span style=\"color: #ce181e;\"><b>const<\/b><\/span> { Component, useState, mount } = owl;<\/p>\n<p><span style=\"color: #ce181e;\"><b>class<\/b><\/span> Action <span style=\"color: #ce181e;\"><b>extends<\/b><\/span> Component {<\/p>\n<p><span style=\"color: #ce181e;\"><b>static<\/b><\/span> template = &#8220;<span style=\"color: #7f6000;\">Action<\/span>&#8220;;<\/p>\n<p>setup() {<\/p>\n<p><span style=\"color: #70ad47;\"><b>this<\/b><\/span>.state = useState({ word: &#8216;<span style=\"color: #7f6000;\">walk<\/span>&#8216; });<\/p>\n<p>}<\/p>\n<p>toggle() {<\/p>\n<p><span style=\"color: #70ad47;\"><b>this<\/b><\/span>.state.word = <span style=\"color: #70ad47;\"><b>this<\/b><\/span>.state.word === &#8216;<span style=\"color: #7f6000;\">walk<\/span>&#8216; ? &#8216;<span style=\"color: #7f6000;\">jump<\/span>&#8216; : &#8216;<span style=\"color: #7f6000;\">walk<\/span>&#8216;;<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<p>\/\/ Main Animal component<\/p>\n<p><span style=\"color: #ce181e;\"><b>class<\/b><\/span> Animal <span style=\"color: #ce181e;\"><b>extends<\/b><\/span> Component {<\/p>\n<p><span style=\"color: #ce181e;\"><b>static<\/b><\/span> components = { Action };<\/p>\n<p><span style=\"color: #ce181e;\"><b>static<\/b><\/span> template = &#8220;<span style=\"color: #7f6000;\">Animal<\/span>&#8221;<\/p>\n<p>setup() {<\/p>\n<p><span style=\"color: #70ad47;\"><b>this<\/b><\/span>.state = useState({ name: &#8216;<span style=\"color: #7f6000;\">cat<\/span>&#8216;});<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<p>\/\/ Application setup<\/p>\n<p>mount(Animal, <span style=\"color: #70ad47;\"><b>document<\/b><\/span>.body, { templates: TEMPLATES, dev: true });<\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>XML Code<\/b><\/li>\n<\/ul>\n<div class=\"card code-card p-4\">\n<p>&lt;<span style=\"color: #ce181e;\">templates<\/span>&gt;<\/p>\n<p>&lt;<span style=\"color: #ce181e;\">div<\/span> <span style=\"color: #70ad47;\">t-name<\/span>=&#8221;<span style=\"color: #7f6000;\">Action<\/span>&#8221; <span style=\"color: #70ad47;\">class<\/span>=&#8221;<span style=\"color: #7f6000;\">action<\/span>&#8220;<span style=\"color: #70ad47;\"> t-on-click<\/span>=&#8221;<span style=\"color: #7f6000;\">toggle<\/span>&#8220;&gt;<\/p>\n<p>&lt;<span style=\"color: #ce181e;\">t<\/span> <span style=\"color: #70ad47;\">t-esc<\/span>=&#8221;<span style=\"color: #7f6000;\">&#8216;A &#8216;<\/span> + <span style=\"color: #7f6000;\">props.name<\/span> + <span style=\"color: #7f6000;\">&#8216; can &#8216;<\/span> + <span style=\"color: #7f6000;\">state.word<\/span>&#8220;\/&gt;<\/p>\n<p><b>\u00a0\u00a0\u00a0\u00a0\u00a0<\/b>&lt;\/<span style=\"color: #ce181e;\">div<\/span>&gt;<\/p>\n<p>&lt;<span style=\"color: #ce181e;\">t<\/span> <span style=\"color: #70ad47;\">t-name<\/span>=&#8221;Animal&#8221;&gt;<\/p>\n<p>&lt;<span style=\"color: #ce181e;\">Action<\/span> <span style=\"color: #70ad47;\">name<\/span>=&#8221;<span style=\"color: #7f6000;\">state.name<\/span>&#8220;\/&gt;<\/p>\n<p>&lt;\/<span style=\"color: #ce181e;\">t<\/span>&gt;<\/p>\n<p>&lt;\/<span style=\"color: #ce181e;\">templates<\/span>&gt;<\/p>\n<\/div>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>CSS<\/b><\/li>\n<\/ul>\n<div class=\"card code-card p-4\">\n<p>.<span style=\"color: #70ad47;\">action<\/span> {font-size: 30px;<\/p>\n<p>width: 350px;<\/p>\n<p>height: 150px;<\/p>\n<p>margin: 10px;<\/p>\n<p>text-align: center;<\/p>\n<p>}<\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<div class=\"card code-card p-4\">\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b><b><b>Output<\/b><\/b><\/b>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"2\">Initially, we get<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0A cat can walk<\/h3>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\">On Clicking over text we get -&gt;<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 A cat can jump<\/h3>\n<\/div>\n<p>&nbsp;<\/p>\n<h4><b>Explanation<\/b><\/h4>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\">All new components are created by extending the main <b>Component<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\">The structure of the OWL Component is in the tree view model, and each component has its individual local state.<\/li>\n<\/ul>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\">We have created two components in our JS file:\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\">Action Component defines two actions in its local state: <b>jump <\/b>and<b> walk<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"2\">The animal component which defines the name of the animal in its local state: <b>cat<\/b><\/li>\n<\/ul>\n<\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\">We have created the XML file which contains the template that will be rendered through the above two components respectively.<\/li>\n<\/ul>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\">There is also an on-click hook registered in the template which triggers the <b>toggle<\/b> function. That function alternates the value of the local state variable &#8220;<b>word<\/b>&#8221; in the <b>Action Owl component.<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\">There is an Observer class that always monitors changes to an object or array and responds appropriately. If any changes take place in hooks such as useState, the view is re-rendered.<\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\">So when the <b>toggle<\/b> function updates the local state variable of the <b>Action component<\/b>, it automatically re-renders the updated value thus changing the: <b>A cat can walk<\/b> to <b>A cat can jump.<\/b><\/li>\n<\/ul>\n<p>There is always room for a new framework in the world. If an OWL Framework is compatible with Odoo, the changes would be worth making. If you are planning to adopt the higher version of Odoo, then get ready for the Odoo OWL Framework in version 16.<\/p>\n<h4><b>Why consult Ksolves?<\/b><\/h4>\n<p>If you need any assistance with Odoo development, Ksolves experts are there to help you with every Odoo need. Be it Odoo customization, integration, or extension service, we are always here to help you with our utmost services.<\/p>\n<p><strong>Was the blog informative? Tell us below:<\/strong><\/p>\n<p>Website: <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https:\/\/store.ksolves.com\/\"><span style=\"color: #0000ff;\">https:\/\/store.ksolves.com\/<\/span><\/a><br \/>\n<\/span>Phone:+1(646)-203-1075, +91-7498170227<br \/>\nEmail: <a href=\"mailto:sales@ksolves.com\"><span style=\"color: #0000ff;\">sales@ksolves.com<\/span><\/a><\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_1487\" class=\"pvc_stats all  \" data-element-id=\"1487\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" version=\"1.0\" viewBox=\"0 0 502 315\" preserveAspectRatio=\"xMidYMid meet\"><g transform=\"translate(0,332) scale(0.1,-0.1)\" fill=\"\" stroke=\"none\"><path d=\"M2394 3279 l-29 -30 -3 -207 c-2 -182 0 -211 15 -242 39 -76 157 -76 196 0 15 31 17 60 15 243 l-3 209 -33 29 c-26 23 -41 29 -80 29 -41 0 -53 -5 -78 -31z\"\/><path d=\"M3085 3251 c-45 -19 -58 -50 -96 -229 -47 -217 -49 -260 -13 -295 52 -53 146 -42 177 20 16 31 87 366 87 410 0 70 -86 122 -155 94z\"\/><path d=\"M1751 3234 c-13 -9 -29 -31 -37 -50 -12 -29 -10 -49 21 -204 19 -94 39 -189 45 -210 14 -50 54 -80 110 -80 34 0 48 6 76 34 21 21 34 44 34 59 0 14 -18 113 -40 219 -37 178 -43 195 -70 221 -36 32 -101 37 -139 11z\"\/><path d=\"M1163 3073 c-36 -7 -73 -59 -73 -102 0 -56 133 -378 171 -413 34 -32 83 -37 129 -13 70 36 67 87 -16 290 -86 209 -89 214 -129 231 -35 14 -42 15 -82 7z\"\/><path d=\"M3689 3066 c-15 -9 -33 -30 -42 -48 -48 -103 -147 -355 -147 -375 0 -98 131 -148 192 -74 13 15 57 108 97 206 80 196 84 226 37 273 -30 30 -99 39 -137 18z\"\/><path d=\"M583 2784 c-38 -19 -67 -74 -58 -113 9 -42 211 -354 242 -373 16 -10 45 -18 66 -18 51 0 107 52 107 100 0 39 -1 41 -124 234 -80 126 -108 162 -133 173 -41 17 -61 16 -100 -3z\"\/><path d=\"M4250 2784 c-14 -9 -74 -91 -133 -183 -95 -150 -107 -173 -107 -213 0 -55 33 -94 87 -104 67 -13 90 8 211 198 130 202 137 225 78 284 -27 27 -42 34 -72 34 -22 0 -50 -8 -64 -16z\"\/><path d=\"M2275 2693 c-553 -48 -1095 -270 -1585 -649 -135 -104 -459 -423 -483 -476 -23 -49 -22 -139 2 -186 73 -142 361 -457 571 -626 285 -228 642 -407 990 -497 242 -63 336 -73 660 -74 310 0 370 5 595 52 535 111 1045 392 1455 803 122 121 250 273 275 326 19 41 19 137 0 174 -41 79 -309 363 -465 492 -447 370 -946 591 -1479 653 -113 14 -422 18 -536 8z m395 -428 c171 -34 330 -124 456 -258 112 -119 167 -219 211 -378 27 -96 24 -300 -5 -401 -72 -255 -236 -447 -474 -557 -132 -62 -201 -76 -368 -76 -167 0 -236 14 -368 76 -213 98 -373 271 -451 485 -162 444 86 934 547 1084 153 49 292 57 452 25z m909 -232 c222 -123 408 -262 593 -441 76 -74 138 -139 138 -144 0 -16 -233 -242 -330 -319 -155 -123 -309 -223 -461 -299 l-81 -41 32 46 c18 26 49 83 70 128 143 306 141 649 -6 957 -25 52 -61 116 -79 142 l-34 47 45 -20 c26 -10 76 -36 113 -56z m-2057 25 c-40 -58 -105 -190 -130 -263 -110 -324 -59 -707 132 -981 25 -35 42 -64 37 -64 -19 0 -241 119 -326 174 -188 122 -406 314 -532 468 l-58 71 108 103 c185 178 428 349 672 473 66 33 121 60 123 61 2 0 -10 -19 -26 -42z\"\/><path d=\"M2375 1950 c-198 -44 -350 -190 -395 -379 -18 -76 -8 -221 19 -290 114 -284 457 -406 731 -260 98 52 188 154 231 260 27 69 37 214 19 290 -38 163 -166 304 -326 360 -67 23 -215 33 -279 19z\"\/><\/g><\/svg><\/i> <img decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" data-src=\"https:\/\/store.ksolves.com\/blog\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" class=\"lazyload\" style=\"--smush-placeholder-width: 16px; --smush-placeholder-aspect-ratio: 16\/16;\" \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Every other person or business is operating on Web Applications. Web applications are used for operating websites and running a [&hellip;]<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_1487\" class=\"pvc_stats all  \" data-element-id=\"1487\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" version=\"1.0\" viewBox=\"0 0 502 315\" preserveAspectRatio=\"xMidYMid meet\"><g transform=\"translate(0,332) scale(0.1,-0.1)\" fill=\"\" stroke=\"none\"><path d=\"M2394 3279 l-29 -30 -3 -207 c-2 -182 0 -211 15 -242 39 -76 157 -76 196 0 15 31 17 60 15 243 l-3 209 -33 29 c-26 23 -41 29 -80 29 -41 0 -53 -5 -78 -31z\"\/><path d=\"M3085 3251 c-45 -19 -58 -50 -96 -229 -47 -217 -49 -260 -13 -295 52 -53 146 -42 177 20 16 31 87 366 87 410 0 70 -86 122 -155 94z\"\/><path d=\"M1751 3234 c-13 -9 -29 -31 -37 -50 -12 -29 -10 -49 21 -204 19 -94 39 -189 45 -210 14 -50 54 -80 110 -80 34 0 48 6 76 34 21 21 34 44 34 59 0 14 -18 113 -40 219 -37 178 -43 195 -70 221 -36 32 -101 37 -139 11z\"\/><path d=\"M1163 3073 c-36 -7 -73 -59 -73 -102 0 -56 133 -378 171 -413 34 -32 83 -37 129 -13 70 36 67 87 -16 290 -86 209 -89 214 -129 231 -35 14 -42 15 -82 7z\"\/><path d=\"M3689 3066 c-15 -9 -33 -30 -42 -48 -48 -103 -147 -355 -147 -375 0 -98 131 -148 192 -74 13 15 57 108 97 206 80 196 84 226 37 273 -30 30 -99 39 -137 18z\"\/><path d=\"M583 2784 c-38 -19 -67 -74 -58 -113 9 -42 211 -354 242 -373 16 -10 45 -18 66 -18 51 0 107 52 107 100 0 39 -1 41 -124 234 -80 126 -108 162 -133 173 -41 17 -61 16 -100 -3z\"\/><path d=\"M4250 2784 c-14 -9 -74 -91 -133 -183 -95 -150 -107 -173 -107 -213 0 -55 33 -94 87 -104 67 -13 90 8 211 198 130 202 137 225 78 284 -27 27 -42 34 -72 34 -22 0 -50 -8 -64 -16z\"\/><path d=\"M2275 2693 c-553 -48 -1095 -270 -1585 -649 -135 -104 -459 -423 -483 -476 -23 -49 -22 -139 2 -186 73 -142 361 -457 571 -626 285 -228 642 -407 990 -497 242 -63 336 -73 660 -74 310 0 370 5 595 52 535 111 1045 392 1455 803 122 121 250 273 275 326 19 41 19 137 0 174 -41 79 -309 363 -465 492 -447 370 -946 591 -1479 653 -113 14 -422 18 -536 8z m395 -428 c171 -34 330 -124 456 -258 112 -119 167 -219 211 -378 27 -96 24 -300 -5 -401 -72 -255 -236 -447 -474 -557 -132 -62 -201 -76 -368 -76 -167 0 -236 14 -368 76 -213 98 -373 271 -451 485 -162 444 86 934 547 1084 153 49 292 57 452 25z m909 -232 c222 -123 408 -262 593 -441 76 -74 138 -139 138 -144 0 -16 -233 -242 -330 -319 -155 -123 -309 -223 -461 -299 l-81 -41 32 46 c18 26 49 83 70 128 143 306 141 649 -6 957 -25 52 -61 116 -79 142 l-34 47 45 -20 c26 -10 76 -36 113 -56z m-2057 25 c-40 -58 -105 -190 -130 -263 -110 -324 -59 -707 132 -981 25 -35 42 -64 37 -64 -19 0 -241 119 -326 174 -188 122 -406 314 -532 468 l-58 71 108 103 c185 178 428 349 672 473 66 33 121 60 123 61 2 0 -10 -19 -26 -42z\"\/><path d=\"M2375 1950 c-198 -44 -350 -190 -395 -379 -18 -76 -8 -221 19 -290 114 -284 457 -406 731 -260 98 52 188 154 231 260 27 69 37 214 19 290 -38 163 -166 304 -326 360 -67 23 -215 33 -279 19z\"\/><\/g><\/svg><\/i> <img decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" data-src=\"https:\/\/store.ksolves.com\/blog\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" class=\"lazyload\" style=\"--smush-placeholder-width: 16px; --smush-placeholder-aspect-ratio: 16\/16;\" \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":3,"featured_media":1488,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1487","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-odoo"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Odoo OWL Framework<\/title>\n<meta name=\"description\" content=\"OWL is a front-end development framework created by Odoo. It was a framework they introduced in the latest version of Odoo. read more to understand the new UI.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Odoo OWL Framework\" \/>\n<meta property=\"og:description\" content=\"OWL is a front-end development framework created by Odoo. It was a framework they introduced in the latest version of Odoo. read more to understand the new UI.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business\" \/>\n<meta property=\"og:site_name\" content=\"Ksolves Store Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-23T13:02:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-25T10:45:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/store.ksolves.com\/blog\/wp-content\/uploads\/2022\/02\/Owl-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"880\" \/>\n\t<meta property=\"og:image:height\" content=\"440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Parul Gautam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Parul Gautam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/store.ksolves.com\/blog\/odoo\/the-new-odoo-owl-framework-for-new-generation-of-business\",\"url\":\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business\",\"name\":\"What is Odoo OWL Framework\",\"isPartOf\":{\"@id\":\"https:\/\/store.ksolves.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#primaryimage\"},\"image\":{\"@id\":\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#primaryimage\"},\"thumbnailUrl\":\"https:\/\/store.ksolves.com\/blog\/wp-content\/uploads\/2022\/02\/Owl-2.jpg\",\"datePublished\":\"2022-02-23T13:02:26+00:00\",\"dateModified\":\"2022-03-25T10:45:16+00:00\",\"author\":{\"@id\":\"https:\/\/store.ksolves.com\/blog\/#\/schema\/person\/24bfd358b29cc978fd6e7f809e28b7d2\"},\"description\":\"OWL is a front-end development framework created by Odoo. It was a framework they introduced in the latest version of Odoo. read more to understand the new UI.\",\"breadcrumb\":{\"@id\":\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#primaryimage\",\"url\":\"https:\/\/store.ksolves.com\/blog\/wp-content\/uploads\/2022\/02\/Owl-2.jpg\",\"contentUrl\":\"https:\/\/store.ksolves.com\/blog\/wp-content\/uploads\/2022\/02\/Owl-2.jpg\",\"width\":880,\"height\":440,\"caption\":\"Odoo OWL Framework\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/store.ksolves.com\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Odoo OWL Framework For New Generation of Business\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/store.ksolves.com\/blog\/#website\",\"url\":\"https:\/\/store.ksolves.com\/blog\/\",\"name\":\"Ksolves Store Blog\",\"description\":\"Where Great Ideas Change Your Business\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/store.ksolves.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/store.ksolves.com\/blog\/#\/schema\/person\/24bfd358b29cc978fd6e7f809e28b7d2\",\"name\":\"Parul Gautam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/store.ksolves.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9eb990d177ece8faa608213c706ff36edd7f09fbb996e90aaa4d36dcb6f41cac?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9eb990d177ece8faa608213c706ff36edd7f09fbb996e90aaa4d36dcb6f41cac?s=96&d=mm&r=g\",\"caption\":\"Parul Gautam\"},\"description\":\"Parul Gautam is a Sr. Technical Writer who believes in bridging the gap between customers and Technologies. She can convert the aura of any Technology into Powerful Words. One time she can Jot Down her words and at the other, she will Tap on the Beats of Great Music. To Taste the Recipe of her Writing, hang on to the great Blogs.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Odoo OWL Framework","description":"OWL is a front-end development framework created by Odoo. It was a framework they introduced in the latest version of Odoo. read more to understand the new UI.","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:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business","og_locale":"en_US","og_type":"article","og_title":"What is Odoo OWL Framework","og_description":"OWL is a front-end development framework created by Odoo. It was a framework they introduced in the latest version of Odoo. read more to understand the new UI.","og_url":"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business","og_site_name":"Ksolves Store Blog","article_published_time":"2022-02-23T13:02:26+00:00","article_modified_time":"2022-03-25T10:45:16+00:00","og_image":[{"width":880,"height":440,"url":"https:\/\/store.ksolves.com\/blog\/wp-content\/uploads\/2022\/02\/Owl-2.jpg","type":"image\/jpeg"}],"author":"Parul Gautam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Parul Gautam","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/store.ksolves.com\/blog\/odoo\/the-new-odoo-owl-framework-for-new-generation-of-business","url":"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business","name":"What is Odoo OWL Framework","isPartOf":{"@id":"https:\/\/store.ksolves.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#primaryimage"},"image":{"@id":"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#primaryimage"},"thumbnailUrl":"https:\/\/store.ksolves.com\/blog\/wp-content\/uploads\/2022\/02\/Owl-2.jpg","datePublished":"2022-02-23T13:02:26+00:00","dateModified":"2022-03-25T10:45:16+00:00","author":{"@id":"https:\/\/store.ksolves.com\/blog\/#\/schema\/person\/24bfd358b29cc978fd6e7f809e28b7d2"},"description":"OWL is a front-end development framework created by Odoo. It was a framework they introduced in the latest version of Odoo. read more to understand the new UI.","breadcrumb":{"@id":"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#primaryimage","url":"https:\/\/store.ksolves.com\/blog\/wp-content\/uploads\/2022\/02\/Owl-2.jpg","contentUrl":"https:\/\/store.ksolves.com\/blog\/wp-content\/uploads\/2022\/02\/Owl-2.jpg","width":880,"height":440,"caption":"Odoo OWL Framework"},{"@type":"BreadcrumbList","@id":"https:\/\/store.ksolves.com\/blog\/odoo-2\/the-new-odoo-owl-framework-for-new-generation-of-business#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/store.ksolves.com\/blog"},{"@type":"ListItem","position":2,"name":"The Odoo OWL Framework For New Generation of Business"}]},{"@type":"WebSite","@id":"https:\/\/store.ksolves.com\/blog\/#website","url":"https:\/\/store.ksolves.com\/blog\/","name":"Ksolves Store Blog","description":"Where Great Ideas Change Your Business","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/store.ksolves.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/store.ksolves.com\/blog\/#\/schema\/person\/24bfd358b29cc978fd6e7f809e28b7d2","name":"Parul Gautam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/store.ksolves.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9eb990d177ece8faa608213c706ff36edd7f09fbb996e90aaa4d36dcb6f41cac?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9eb990d177ece8faa608213c706ff36edd7f09fbb996e90aaa4d36dcb6f41cac?s=96&d=mm&r=g","caption":"Parul Gautam"},"description":"Parul Gautam is a Sr. Technical Writer who believes in bridging the gap between customers and Technologies. She can convert the aura of any Technology into Powerful Words. One time she can Jot Down her words and at the other, she will Tap on the Beats of Great Music. To Taste the Recipe of her Writing, hang on to the great Blogs."}]}},"_links":{"self":[{"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/posts\/1487","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/comments?post=1487"}],"version-history":[{"count":28,"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/posts\/1487\/revisions"}],"predecessor-version":[{"id":1529,"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/posts\/1487\/revisions\/1529"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/media\/1488"}],"wp:attachment":[{"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/media?parent=1487"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/categories?post=1487"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/store.ksolves.com\/blog\/wp-json\/wp\/v2\/tags?post=1487"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}