This question has been flagged
2 Replies
8630 Views

 <record id="view_product_image_tree" model="ir.ui.view">

        <field name="name">product.images.tree</field>

        <field name="model">product.images</field>

        <field name="arch" type="xml">

        <tree string="Product Images">

                <field name="name"/>

                <field name="image" widget='image'/>

                <field name="comments"/>

        </tree>

    </field>

</record>

Avatar
Discard
Best Answer

 There is a module web_tree_image by OCA,

after installing this module, you need to add widget="image", like

<field name="image" widget="image"/>


Avatar
Discard
Best Answer

Watch on YouTube how to implement web_tree_image for 10th Version.

Avatar
Discard