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)