2013-05-09 36 views
0

我無法將SelectionHandler附加到mgwt HeaderList的內容。 如何將CellSelectedHandler附加到HeaderList中,就像在Showcase中一樣? http://mobilegwt.appspot.com/showcase/#GroupedCellListPlacemgwt將CellSelectedHandler附加到HeaderList中的GroupingCellList中

我已經嘗試將處理程序附加到GrouingCellList與構建HeaderList,但此處理程序永遠不會被觸發。

任何人都已經完成了嗎?

+0

我已經CellList及其handlers..is這對你有用做使用SelectionHandler代替CellSelectedHandler的? – 2013-05-10 12:10:36

+0

對於CellList,我也是成功的,但是對於HeaderList中的GroupingCellList,它似乎不是那樣工作的。 – Georg 2013-05-11 09:31:25

回答

0

我設法讓SelectEvents上GroupingCellList

 addHandlerRegistration(view.getList().addSelectionHandler(new SelectionHandler<Content>(){ 
     @Override 
     public void onSelection(SelectionEvent<Content> event) { 
       Window.alert("event"+event.getSelectedItem().getName()); 
     } 
    }));