Is there a way to change the group header color in dhtmlxGri

Hi,



I’d like to know if there is a way to dynamically change a specific group header background color (depending on a certain condition)?



Thank you.

API allows to control only text content of the cell , but doesn’t give access to the container styling
You can exploit html rendering ability, by using

grid.customGroupFormat = function(group_name, count){
return “

any text
”;
}