Hi,
is it possible to have color gradient in footer?
Thanks in advance!
pyt
You can define your custom background as part of custom skin, or just redefine existin class in dhtmlxgrid.css
dhtmlx.com/docs/products/dhtmlxG … _cust_skin
div.gridbox div.ftr{
background-image:url(…);
}
I have added the following subset of rules in dhtmlxgrid.css:
/* custom skin*/
div.gridbox_custom {
border:1px solid #c2d5dc;
}
div.gridbox_custom .xhdr{
background-image:url(images/imgs/skin_modern_header_blue.png);
}
div.gridbox_custom table.hdr{
background-image:url(images/imgs/skin_modern_header_blue.png);
}
div.gridbox_custom div.ftr td {
empty-cells:show;
background-image:url(images/imgs/skin_modern_header_blue.png);
}
and in js:
grid.setSkin(“custom”);
But i have no change in header and footer style.
I attach my image here.
Please, try to change class name as follows:
div.gridbox div.ftr td {
empty-cells:show;
background-image:url(images/imgs/skin_modern_header_blue.png);
}
Unfortunately, it doesn’t work. Is my image okay. Since i have no change neither in header nor in footer.