This only needs to be done in VtigerCRM 5.40! It works out of the box in 6.x.
You could show your color settings inside ListView with some limitations. You have to insert a snippet into one vTigerCRM core sourcefile, because with basic functions, the extension couldn’t interact with the ListView.
<fc red>If you don't use vtigerCRM in english, you have to check the last part.</fc>
{include_php file='./modules/Colorizer/ListViewGenerator.php'}
?>
// Changed Stefan Warnat COLORIZER START require_once("modules/Colorizer/ListViewGenerator.php"); // Changed Stefan Warnat COLORIZER ENDE
vtmodule='$module'
vtvalue='".strip_tags(str_replace("'", "\\'", $value))."'
vtmodule='$module'
vtvalue='".str_replace("'", "\\'", $rawValue)."'
Now the format settings are shown in ListView
Limitations