Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
1586 Tampilan

  _isRequired(fieldName) {

          const required = this.activeFields[fieldName].required;

          return required ? evaluateBooleanExpr(required,   this.evalContextWithVirtualIds) : false;

    }


Is it possible to patch the protected method, if yes means help me to patch the protected method in owl.

Avatar
Buang
Jawaban Terbai

Hi,

We can also patch the protected method. You can try this approach.


import { patch } from "@web/core/utils/patch";

import { ComponentToPath } from "@/path/to/your/component";


patch(ComponentToPath.prototype, {


    _isRequired(fieldName) {


        super()._isRequired(); // if needed old functionality


        // Your custom logic here



     }


});


Hope it helps

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
2
Sep 25
322
2
Apr 25
3445
Free Sing Up ?? Diselesaikan
2
Agu 24
4438
1
Jul 24
1865
0
Jul 24
1935