hi
I would like to apply the style for the data grid. the following is the code i am using.
.group {
background-color: #4D75C4;
border: 1px solid #333333;
color: #ffffff;
}
It is working fine in chrome, but not in IE 9.0
hi
I would like to apply the style for the data grid. the following is the code i am using.
.group {
background-color: #4D75C4;
border: 1px solid #333333;
color: #ffffff;
}
It is working fine in chrome, but not in IE 9.0
.template {
background-color: #4D75C4;
border: 1px solid #333333;
color: #ffffff;
}
The above is also not behaving properly in ie9.
It seems that you have some other coloring options which overrides group coloring.
Try to change it as
.group {
background-color: #4D75C4 !important;
border: 1px solid #333333;
color: #ffffff;
}
If issue still appears - please provide a link to the page where it can be reconstructed
Thanks you have understood the issue. The above code is working fine. the following code is giving an issue of not showing 4D75C4(blue) color completely.
.template
{
background-color: #4D75C4 !important;
border: 1px solid #333333;
color: #ffffff;
}
I’m not sure without looking at actual sample, but you can make the rule more dominant by adding complexity to selector, for example you can define it as
.gridbox .template
{
background-color: #4D75C4 !important;
border: 1px solid #333333;
color: #ffffff;
}
While doing exactly the same, it will be counted as more important than .group, and styles from it will be used when possible.
even with dhtmlx3.5 the above code is not working, it is working fine in chrome.
even,uneven is also not working with this code. As a sample it is working in my ie9.
Please provide a demo link or any other kind of sample where issue can be checked.