Problem with 'Cell Indicator' code
Alex,
I am using the cell indicator code sample you suggested in this topic: http://www.activewidgets.com/javascript.forum.13178.4/suggestion-for-feature-cell-marker.html
The only 'real' difference is I am using a background image in the CSS
Like this
This works great on my development machine (desktop) but when I move my page to the web server the image will flicker (sometimes not display) when the user mouses over any row. The flicker seems to be caused by the row mouseover event. The entire row seems to repaint.
I also have the same problem with my selected row indicator. It is also a style sheet background image.
Is there a way of disabling the row mouse over event?
Any help would be appreciated.
I am using the cell indicator code sample you suggested in this topic: http://www.activewidgets.com/javascript.forum.13178.4/suggestion-for-feature-cell-marker.html
The only 'real' difference is I am using a background image in the CSS
Like this
.aw-item-indicator {
display: none; /* hidden by default */
position: absolute;
overflow: hidden;
right: 2px;
top: 4px;
width: 10px;
height: 10px;
background-image:url(./images/fulltextsm.gif);
cursor: pointer;
}
This works great on my development machine (desktop) but when I move my page to the web server the image will flicker (sometimes not display) when the user mouses over any row. The flicker seems to be caused by the row mouseover event. The entire row seems to repaint.
I also have the same problem with my selected row indicator. It is also a style sheet background image.
.aw-rows-selected .aw-row-selector {background-image:url(./images/selectArrow.gif);background-repeat:no-repeat}
Is there a way of disabling the row mouse over event?
Any help would be appreciated.
Colin P.
November 21,