Hi, this is my first time posting, so I'm sorry if I'm not asking for
help in a proper way.
I've created a CellTable with a column that looks like this:
Column<Object,String> name = new
Column<Object,String>(new ClickableTextCell()) {
@Override
public String getValue(Object object) {
return object.getName();
}
@Override
public void onBrowserEvent(Context context, Element elem,
Object
object, NativeEvent event) {
if(event.getButton() == NativeEvent.BUTTON_LEFT){
Window.open(sistemaInformacionUi.getURL(),
"_blank", "");
}
}
};
So when you click over a cell in this column the browser opens a new
window with the URL.
It works OK in FF and Chrome, but it doesn't work for IE8. I've tried
debbuging and the DOM class doesn't catch
the click event, so it never sends the event to the CellTable and this
one neither to the ClickableTextCell.
Anyone could help me?? Thanks!
--
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.