Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
5669 Ansichten

Hi all,

Here i want to show a table in form view, here is what i am tried.

views/templates.xml

<openerp>
 <data>
 <template id="assets_backend" name="backoffice_assets" inherit_id="web.assets_backend">
 <xpath expr="." position="inside">
 <script type="text/javascript" src="/backoffice/static/src/js/back.js"></script>
 </xpath>
 </template>
 </data>
</openerp>

static/src/js/back.js

openerp.backoffice = function(instance) {
     instance.backoffice.Matrix = instance.web.form.FormWidget.extend(instance.web.form.ReinitializeWidgetMixin, {
         init: function() {
         this._super.apply(this, arguments);
         },
     }); 
 instance.web.form.custom_widgets.add('matrix', 'instance.backoffice.Matrix');
};

static/src/xml/back.xml

<templates id="template" xml:space="preserve">
 <t t-name="Matrix">
 <div>
 <b>Hai this is test</b>
 </div>
 </t>
</templates>

views/custom_view.xml

<widget type="matrix"></widget>

But not working, please anyone helpme....

Thanks in advance...

Avatar
Verwerfen
Verknüpfte Beiträge Antworten Ansichten Aktivität
0
Mai 24
983
1
Juli 24
1195
1
Juli 23
3795
0
März 24
2732
1
Sept. 22
5601