Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
260
Browser Compatibilty UltraWebgrid
posted

Hi,
I have a Web Ap., V9.2, Framework 3.5, UltrawebGrid, ajax disabled,
(url http://www.atbtires.be/Lijsten/St_Search.aspx)
With client side row mouse over scripts, that display images on the right side of the grid,
based upon the image url in the grid (hidden of course)

Now I developed this more than 1 year ago, but now these problems pop up:
IE8 : all okay
IE9 in Compatibility Mode: work okay until you use the scrollbar of the grid
IE9 normal mode : images displayed
Google Chrome: the grid itself completely f.. up
Mozilla Firefox: grid more or less okay but no mouse over effect

So can somebody advise me how to update this side without starting
over?


Friendly greetings,
Jurgen

 

glance at the scripts I used:
---------------------------------------------------------------------------------------
UltraWebGrid1_MouseOverHandler(gridName, id, objectType)
{
...
var image = document.getElementById(row.getCellFromKey("Image").Id).currentStyle.backgroundImage;
div.style.backgroundImage = image;
div.style.zIndex = 1;
div.style.visibility = "visible";
...
}

function UltraWebGrid1_MouseOutHandler(gridName, id, objectType)
{
if (objectType == 0)
  {
        ....
               div.style.display = "block";
               div.style.zIndex = -1;
               div.style.visibility = "hidden";
 ...
}
--------------------------------------------------------------------------------