How do you add a row listener to a specific row, or all rows in a table? I need to add a type of "onMouseOver" listener to the rows so that when you hover over them, it changes the background color of the row, much like getRowFormatter will allow you to do.
|
feedback
|
|
Supposing GWT 1.5.3: CLICK EVENT HANDLING If you are using OTHER EVENTS HANDLING (e.g. HOVER) If you need to handle other type of events other than click (say, hover), GWT currently doesn't have a ready interface for that. You pretty much left on your own to implement them yourself. There's two ways of doing it that I can think of now:
| |||||
feedback
|
| ||||
|
feedback
|
|
I found it much simple to add javascript directly to the TR element. My code assumes that a widgets DOM parent is a TD and the grandparent is the TR so you need to be sure you know your DOM. Here's my code. Nice and simple, no JSNI or GWT DOM event management required. TableRowElement rowElement = (TableRowElement) checkbox.getElement().getParentElement().getParentElement(); rowElement.setAttribute("onMouseOver", "this.className='" + importRecordsResources.css().normalActive() + "'"); rowElement.setAttribute("onMouseOut", "this.className='" + importRecordsResources.css().normal() + "'"); | |||
feedback
|