Hi Guys,
i'm wondering is it possible to change text style (color, bold etc) for text values in SO, for example client name or phone?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi Guys,
i'm wondering is it possible to change text style (color, bold etc) for text values in SO, for example client name or phone?
Dear Rostyslav Sulym,
Try this code to check your selection field value and apply change text style based on color and, bold.
<t t-if-"Good">
<t t-set="style" t-value="'color:blue'" />
</t>
<t t-if-"Bad">
<t t-set="style" t-value="'color:red'" />
</t>
<span t-att-style="style" >Test</span>
Thanks,
hello, thanks for reply, but this is for Qweb, it's not suitable in my case
I’m taking Odoo about field selection field. actually I want to apply style based on selection field value(Good, Bad). Let say selection field value is “Good” then show In Green bold if value is “Bad” then show red bold. We can’t achieve this through apply inline CSS as per your suggestion.
Создайте аккаунт сегодня, чтобы получить доступ к эксклюзивным функциям и стать частью нашего замечательного сообщества!
Регистрация| Похожие посты | Ответы | Просмотры | Активность | |
|---|---|---|---|---|
|
1
июн. 20
|
4626 | |||
|
2
июл. 25
|
6423 | |||
|
2
окт. 25
|
8777 | |||
|
2
дек. 24
|
3660 | |||
|
How to ORDER BY? [Odoo 10]
Решено
|
2
нояб. 24
|
29675 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
if you are talking about odoo fields, than just inherit that field and apply inline css as per ur need