fields
forms
Properties
Odoo 19 fields — Properties (views)
Live preview
Interactive
Source excerpt
web/static/src/views/fields/properties/card_properties_field.js
import { registry } from "@web/core/registry";
import { propertiesField, PropertiesField } from "./properties_field";
export class CardPropertiesField extends PropertiesField {
static template = "web.CardPropertiesField";
async checkDefinitionWriteAccess() {
return false;
}
}
export const cardPropertiesField = {
...propertiesField,
component: CardPropertiesField,
};
registry.category("fields").add("kanban.properties", cardPropertiesField);
registry.category("fields").add("hierarchy.properties", cardPropertiesField);
Registry / API
- Registry name
kanban.properties- Category
fields- Module
web- Slug
kanban-properties- Nav group
forms