You need to do the following:
.left_menu_title { cursor: pointer; }
If you want the code to perform other actions besides a pointer to a pointer:
import com.google.gwt.dom.client.Style.Cursor; import com.google.gwt.event.dom.client.MouseOverEvent; import com.google.gwt.event.dom.client.MouseOverHandler; import com.google.gwt.user.client.ui.Label; ... ... ... final Label testLabel = new Label(); testLabel.addMouseOverHandler(new MouseOverHandler() { @Override public void onMouseOver(MouseOverEvent event) { testLabel.getElement().getStyle().setCursor(Cursor.POINTER);
naddame
source share