Subversion Repository Public Repository

litesoft

Diff Revisions 592 vs 593 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/foundation/widgets/support/InputWidgetChangeFilter.java

Diff revisions: vs.
  @@ -1,10 +1,9 @@
1 1 package com.temp.foundation.widgets.support;
2 2
3 - import com.google.gwt.event.dom.client.ChangeEvent;
4 - import com.google.gwt.event.dom.client.ChangeEventFactory;
5 - import com.google.gwt.event.dom.client.ChangeHandler;
6 - import com.google.gwt.event.shared.HandlerRegistration;
7 - import com.temp.shared.utils.ObjectUtils;
3 + import com.google.gwt.event.dom.client.*;
4 + import com.google.gwt.event.shared.*;
5 + import com.temp.foundation.widgets.support.events.*;
6 + import com.temp.shared.utils.*;
8 7
9 8 public class InputWidgetChangeFilter<T> implements InputWidgetValueAdapter<T> {
10 9
  @@ -61,7 +60,7 @@
61 60 }
62 61
63 62 protected void notifyChangeHandlers() {
64 - handlerManager.fireEvent(ChangeEventFactory.create());
63 + handlerManager.fireEvent(new NonDomChangeEvent());
65 64 }
66 65
67 66 protected HandlerRegistration registerChangeHandler(ChangeHandler handler) {