Skip to Content
OWL data_display

Action Helper

Odoo 19 OWL component — Action Helper (views)

Live preview Interactive
Source excerpt web/static/src/views/action_helper.js
import { Component } from "@odoo/owl";
import { Widget } from "@web/views/widgets/widget";
import { RibbonWidget } from "@web/views/widgets/ribbon/ribbon";

export class ActionHelper extends Component {
    static template = "web.ActionHelper";
    static components = { Widget, RibbonWidget };
    static props = {
        showRibbon: { type: Boolean, optional: true, default: false },
        noContentHelp: { type: String, optional: true },
    };

    get showDefaultHelper() {
        return !this.props.noContentHelp;
    }
}
Registry / API
Registry name
ActionHelper
Category
Module
web
Slug
action-helper
Nav group
data_display