Hi,
I'm trying the GWT's milestone 1. With this code:
final ValueChangeHandler<String> historyHandler = new
ValueChangeHandler<String>() {
@Override
public void onValueChange(ValueChangeEvent<String> event)
{
//Window.alert("Valore history cambiato");
}
};
History.addValueChangeHandler(historyHandler);
All in Firefox works but in IE6 or IE7 the application is not loaded
beacuse of an error: handlers is null or it's not a object.
This is the code that raise the error(get with a debug tool):
_ = DocumentRootImpl.prototype = new Object_0();
_.getClass$ = getClass_21;
_.typeId$ = 0;
var documentRoot;
function $addValueChangeHandler(this$static, handler){
return $addHandler_0(this$static.handlers, getType_1(), handler);
}
Any ideas to solve the problem?
Thanks!
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 [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
-~----------~----~----~----~------~----~------~--~---