Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Jul 21, 2008 02:11
open dhtmlx forum
dbdark skin on hover

Hi,
I'm having a grid and for the grid i'm making use of the different skins in the drop down option of my own. Depending on the selected value i'm setting the skin style by using

Response.Write "<call command=""setSkin""><param>" & selectedSkinNameFromDropDown & "</param></call>"

This works well with all the skins. When i select the skin type as "dbdark" and hover on any of the row the values gets disappeared. In the first column i'm having all the values as hyperlink and there is on hover display message function for.

| This | is | New | --> Header
| 1 | 2 | 3 | -- > Row with first column as hyperlink and with gray skin

| This | is | New | --> Header
| 1 | | | -- > On hovering the mouse on the row when i'm dbdark as the skin type.

Please suggest me on how to proceed.
Answer posted by Support on Jul 21, 2008 03:16
The issue is not reconstructable locally, in which browser problem occurs for you.

The sbdark skin has special styling for hovering, which works correctly in local testing , but may be the reason of problem in your case.
Please try to update dhtmlxgrid.css - locate next code

div.gridbox_sbdark table.obj tr.rowselected td,
div.gridbox_sbdark table.obj tr:hover,
div.gridbox_sbdark .odd_light:hover {
    background-color: #8A8F84;
    color: white !important;
}


and update it as

div.gridbox_sbdark table.obj tr.rowselected td {
    background-color: #8A8F84;
    color: white !important;
}

Answer posted on Jul 21, 2008 07:29

Thanks for the speedy answer,

The fix works well in the IE7 but the grid itself is not displayed in mozilla firefox after implementing this fix. Suggest me on how to proceed.

Answer posted by Support on Jul 21, 2008 08:49
Problem can't be reconstructed locally, if it still occurs for you - please porvide any kind of sample where it can be reconstructed. ( you can send it directly to support@dhtmlx.com )