跳至內容
選單
此問題已被標幟
5665 瀏覽次數

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...

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
5月 24
980
1
7月 24
1184
1
7月 23
3787
0
3月 24
2729
1
9月 22
5596