There's a solution that is pretty similar to how I solved this problem
described in detail on this page:
http://www.permadi.com/tutorial/cssHighlightTableRow/index.html but
you'll have to scroll to the bottom to find it.  The page presents
multiple options, but it is the second to last one that you want.

Basically, just throw a div around your table which has onMouseOver
event attached to a function.  In the function, traverse up from the
element which triggered the event handler until you find a TR element
(in my case, my TR elements have a marker class which makes them
eligible for highlighting or not).  then modify the class list
according to your css requirements and attach an onMouseOut event to
the row. You can do the whole thing without writing a tap component
and should work in any browser with decent js support.  I use dojo for
the cross platform api, but it isn't strictly necessary.

--sam

On 2/27/07, Peter Dawn <[EMAIL PROTECTED]> wrote:
can you give me the URL

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to