콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
6051 화면

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
1458
1
7월 24
2203
1
7월 23
4628
0
3월 24
3375
1
9월 22
6303