gwt - mgwt attach CellSelectedHandler to GroupingCellList inside HeaderList -


i'm having trouble attaching selectionhandler contents of mgwt headerlist. how can attach cellselectedhandler headerlist in showcase? http://mobilegwt.appspot.com/showcase/#groupedcelllistplace:

i tryed attach handler grouingcelllist wich headerlist built, handler never fired.

anyone done already?

i managed selectevents using selectionhandler instead of cellselectedhandler on groupingcelllist

        addhandlerregistration(view.getlist().addselectionhandler(new selectionhandler<content>(){         @override          public void onselection(selectionevent<content> event) {                 window.alert("event"+event.getselecteditem().getname());         }     })); 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -