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

How can I use the sheet tag in a form?

아바타
취소
베스트 답변

Hello,

You can use sheet tag within the form tag which must have version="7.0" attribute .

see this example which might help you more

     <record model="ir.ui.view" id="object_name_form_view">
        <field name="name">object_name.form.view</field>
        <field name="model">object_name</field>
        <field name="arch" type="xml">
            <form string="form_string" version="7.0">
                <sheet>
                    <field name="field_name"/>
                </sheet>
            </form>
        </field>
    </record>

Thanks

아바타
취소

Thanks Mayur!

작성자

Thank you! It really helped me.

Can we minimise the size of <sheet tag>

관련 게시물 답글 화면 활동
1
11월 24
2078
1
9월 21
9820
1
1월 24
17390
0
3월 15
3609
1
5월 24
1872