Wednesday, August 31, 2011

Click Listener on CellTableRow

Hi,

I want to handle click events on cell table rows. But i'm not able to
do this!

I tried the following code:

CellTable<MyObject> table = new CellTable<MyObject>();
final SingleSelectionModel<MyObject> model = new
SingleSelectionModel<MyObject>();
table.setSelectionModel(model);

table.addHandler(new ClickHandler() {

@Override
public void onClick(ClickEvent event) {
try{
Window.alert(model.getSelectedObject());
}
catch(Exception e){
System.out.println(e);
}
}
}, ClickEvent.getType());

The problem is, that I try to get the object of the row on which I
have clicked. But on the click, the row under the mouse is actually
not selected. so the popup shows the wrong object.

How can I retreive the object under the mouse?

Kind regards,

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment