Hi
Is it possible to have a conditional formatting on cases list view and dashlets.
for instance a colour or a symbol which differentiates urgent cases on the list view and the dashlets?
any ideas feel free to comment.
cheers
Hi
Is it possible to have a conditional formatting on cases list view and dashlets.
for instance a colour or a symbol which differentiates urgent cases on the list view and the dashlets?
any ideas feel free to comment.
cheers
Hi David,
I did this for our Lead Score which is an integer. I wanted anything 60 or over to have a different font/style.
There may be cleaner/better ways but here is mine.
First I created the field type based on the original integer field:
custom/clients/base/fields/scoring-int/scoring_int.js
The key here is the format function where I set a value of true/false to a custom highpriority variable.
The in the detail, edit, and list .hbs respectively I use that custom value in an if statement to format the value as desired.
For example in detail.hbs I put a red box around it:
While in list view I make it bold and red
Again, the hbs files are based off the original integer hbs, just adding conditions for formatting based on my custom value "highpriority".
HTH
FrancescaS