fields
forms
Html
Odoo 19 fields — Html (views)
Live preview
Interactive
Source excerpt
web/static/src/views/fields/html/html_field.js
import { registry } from "@web/core/registry";
import { TextField, textField } from "../text/text_field";
export class HtmlField extends TextField {
static template = "web.HtmlField";
}
export const htmlField = {
...textField,
component: HtmlField,
};
registry.category("fields").add("html", htmlField);
Registry / API
- Registry name
html- Category
fields- Module
web- Slug
html- Nav group
forms