Skip to Content
Menu
This question has been flagged
1882 Views

I need that when I click on the create button the record was not created immediately. It is necessary that there was a drop for setting the field, and only then could something be created.


        <record id="student_menu_action" model="ir.actions.act_window">
            <field name="name">Fields my table</field>
            <field name="res_model">school.student</field>
            <field name="view_mode">tree,form</field>
            <field name="context">{}</field>
            <field name="domain">[]</field>
            <field name="help" type="html">
                <p class="oe_view_nocontent_create">
                    Create The First Pasha
                </p>
            </field>
        </record>
Avatar
Discard