Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
3418 Vistas

How can we inherit method of class in js 
I have to inherit one of the method of FormController from web/../src/views/...js. then how can i inherit this method into custom module. method name - getActionMenuItems

Avatar
Descartar
Mejor respuesta
/** @odoo-module **/
import { FormController } from "@web/views/form/form_controller";
import {patch} from "@web/core/utils/patch";

patch(FormController.prototype, "CustomFormController", {

​getActionMenuItems() {
​//your code
​​this._super.apply(this, arguments);
​//your code
​}

});



Avatar
Descartar
Mejor respuesta

Hi,

Please refer to the code below. It will give you an idea on how to inherit OWL Js:


/** @odoo-module **/


import { FormController } from "@web/views/form/form_controller";


export class CustomFormController extends FormController {


getActionMenuItems() {

const superVals = super.getActionMenuItems();

// Your code

return superVals;


}


export const CustomFormView = {

...formView,

Controller: CustomFormController,

};


registry.category("views").add("custom_form", CustomFormView);


Hope it helps

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
5
ene 23
13998
1
sept 17
4596
2
jul 17
4344
0
may 24
1853
1
oct 23
1695