Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 904 Bytes

06_misc_list_font_style.rst

File metadata and controls

28 lines (20 loc) · 904 Bytes

Font style in list views

.. versionadded:: 7.0

This revision adds font styles in list views. Before this revision it was possible to define some colors in list view. This revision allows to define the a font style, based on an evaluated Python expression. The definition syntax is the same than the colors feature. Supported styles are bold, italic and underline.

Rng modification

This revision adds the fonts optional attribute in view.rng.

Addon implementation example

In your foo module, you want to specify that when any record is in pending state then it should be displayed in bold in the list view. Edit your foo_view.xml file that define the views, and add the fonts attribute to the tree tag.

<tree string="Foo List View" fonts="bold:state=='pending'">
  [...]
</tree>