hello,
i am using dnn 6 and i have panel in the page with style="position:absolute; display:block" - i see the panel over other controls.
suddenly i notice a strange problem. when i move on gridView the pannel disapper.
i will mention that in event rowdatabound of the gridView i change the class of the row. here is the code :
e.Row.Attributes.Add("onmouseout", "this.className='DataGrid_Item';");
e.Row.Attributes.Add(" ", "this.className='DataGrid_ ';");
where
.DataGrid_
{
cursor: hand;
font-family: Arial, Verdana, Helvetica, Tahoma;
font-size: 13px;
color: #333333;
background-color: #8da4d3;
}
and :
.DataGrid_Item
{
font-family: Arial, Verdana, Helvetica, Tahoma;
font-size: 13px;
color: #333333;
}
i go back to dnn 5.6.2 before upgrade with the same page, and it all works fine without the panel disappering when i move over the gridView. what should be the problem ?
i also check it and see that if i remove the position absolute from the panel, it's doesn't disapper, but the problem is that it stays on the same level as the other controls and he is not above them...
thank you,
adi damty