DEV Community

Perm Chao
Perm Chao

Posted on

ใส่สีให้ Record ในหน้า Tree View

การทำให้ Record ในหน้า View แสดงสีที่ต่างกันออกไปตามสถานะ

<record model="ir.ui.view" id="tree_view_with_color">
    ...
    <field name="arch" type="xml">
        <tree 
            decoration-info="state in ['draft']" 
            decoration-primary="state in ['approved']" 
            decoration-warning="state in ['progress']" 
            decoration-success="state in ['done']" 
            decoration-muted="state in ['cancel']">
                ...
        </tree>
    </field>
</record>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay