Skip to Content
fields forms

Color

Odoo 19 fields — Color (views)

Live preview Interactive
Source excerpt web/static/src/views/fields/color/color_field.js
import { Component } from "@odoo/owl";
import { registry } from "@web/core/registry";
import { standardFieldProps } from "../standard_field_props";
import { exprToBoolean } from "@web/core/utils/strings";

export class ColorField extends Component {
    static template = "web.ColorField";
    static props = {
        ...standardFieldProps,
        autosave: { type: Boolean, optional: true },
    };

    get color() {
        return this.props.record.data[this.props.name] || "";
    }

    onChange(ev) {
        this.props.record.update(
            { [this.props.name]: ev.target.value },
            { save: this.props.autosave }
        );
    }
}

export const colorField = {
    component: ColorField,
    supportedTypes: ["char"],
    extractProps({ viewType, options }, dynamicInfo) {
        let autosave = false;
        if ("autosave" in options) {
            autosave = exprToBoolean(options.autosave);
        } else if (["list", "kanban"].includes(viewType)) {
            autosave = true;
        }
        return {
            readonly: dynamicInfo.readonly,
            autosave,
        };
    },
};

registry.category("fields").add("color", colorField);
Registry / API
Registry name
color
Category
fields
Module
web
Slug
color
Nav group
forms