تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
12612 أدوات العرض

Hi, I want to know how to color a field in the tree view list?

Example: to color in red the field my_field

الصورة الرمزية
إهمال
الكاتب

Ok thanks, but in this way, the line will be colored in green or red. I want this: name will be colored in green and status in red for example. Thanks

أفضل إجابة

hi, for that you can mention a class attribute in your field which you need to change color and in your css file you can add the color or any style for that class, try like this below:

class="red_txt" />

then in css,

.red_txt {

color:red;

}


الصورة الرمزية
إهمال
أفضل إجابة

Hi, use the below example code...

In py file

'status' : fields.selection([('single','Single'),('married','Married')],'Status?'),

In xml file

<tree string="Status" colors="red:shop=='single';green:shop=='married' ">

<field name="name"></field>

<field name="status"></field>

</tree>

الصورة الرمزية
إهمال

This will colour the whole line, not one single field.

المنشورات ذات الصلة الردود أدوات العرض النشاط
1
مارس 15
12087
0
مارس 15
4029
3
أكتوبر 17
17074
1
مارس 15
6330
0
مارس 15
7194