Re: Unsinking mouse over/out/move events for a CellList/Tree/Table

2010-06-23 Thread Thomas Broyer
On 23 juin, 10:51, Paul Schwarz paulsschw...@gmail.com wrote: Summary: in a CellList I want to sink the ONCLICK and ONCONTEXTMENU events to be handled by my Cell's onBrowserEvent method, but I don't want any mouse over/out/move events, but cannot seem to unsink them. In 2.1 M1 we have

Re: Unsinking mouse over/out/move events for a CellList/Tree/Table

2010-06-23 Thread Paul Schwarz
Thanks Thomas, Test and works as suggested. The class owning my CellList extends Composite and I now have overridden the onLoad method like this: @Override protected void onLoad() { myCellListView.unsinkEvents(Event.MOUSEEVENTS); } ... and no longer are the mouse over/out/move events