Hello ,
I want to display a dialog-box component when a user clicks on the
flux table cell. So i just write the code like this. But it is not
working
table.addTableListener(new TableListener() {
@Override
public void onCellClicked(SourcesTableEvents sender,
int row, int
cell) {
Window.alert(getContent(row,cell));
cell_content=getContent(row,cell);
DialogBox db=new DialogBox();
db.setText("hello");
}
});
Can anyone tell me why ?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.