| 1 |  |   | 
  | 2 |  |   | 
  | 3 |  |   | 
  | 4 |  |   | 
  | 5 |  |   | 
  | 6 |  |   | 
  | 7 |  |   | 
  | 8 |  |   | 
  | 9 |  |   | 
  | 10 |  |   | 
  | 11 |  |   | 
  | 12 |  |   | 
  | 13 |  |   | 
  | 14 |  |   | 
  | 15 |  |   | 
  | 16 |  |  package org.kuali.student.common.ui.client.configurable.mvc; | 
  | 17 |  |   | 
  | 18 |  |  import com.google.gwt.core.client.GWT; | 
  | 19 |  |  import com.google.gwt.event.dom.client.BlurEvent; | 
  | 20 |  |  import com.google.gwt.event.dom.client.BlurHandler; | 
  | 21 |  |  import com.google.gwt.event.dom.client.HasBlurHandlers; | 
  | 22 |  |  import com.google.gwt.user.client.ui.Widget; | 
  | 23 |  |  import org.kuali.student.common.ui.client.configurable.mvc.multiplicity.MultiplicityGroup; | 
  | 24 |  |  import org.kuali.student.common.ui.client.mvc.Callback; | 
  | 25 |  |  import org.kuali.student.common.ui.client.mvc.HasFocusLostCallbacks; | 
  | 26 |  |  import org.kuali.student.common.ui.client.widgets.KSLabel; | 
  | 27 |  |  import org.kuali.student.common.ui.client.widgets.list.HasSelectionChangeHandlers; | 
  | 28 |  |  import org.kuali.student.common.ui.client.widgets.list.KSSelectedList; | 
  | 29 |  |  import org.kuali.student.common.ui.client.widgets.list.SelectionChangeEvent; | 
  | 30 |  |  import org.kuali.student.common.ui.client.widgets.list.SelectionChangeHandler; | 
  | 31 |  |   | 
  | 32 |  |   | 
  | 33 |  |   | 
  | 34 |  |   | 
  | 35 |  |   | 
  | 36 |  |   | 
  | 37 |  |   | 
  | 38 | 0 |  public class ValidationEventBindingImpl implements ValidationEventBinding { | 
  | 39 |  |   | 
  | 40 |  |      public void bind(final FieldDescriptor fd) { | 
  | 41 | 0 |          Widget w = fd.getFieldWidget(); | 
  | 42 |  |   | 
  | 43 | 0 |          if (w instanceof HasSelectionChangeHandlers) { | 
  | 44 | 0 |              ((HasSelectionChangeHandlers) w).addSelectionChangeHandler(new SelectionChangeHandler() { | 
  | 45 |  |                  @Override | 
  | 46 |  |                  public void onSelectionChange(SelectionChangeEvent event) { | 
  | 47 | 0 |                      if (event.isUserInitiated()) { | 
  | 48 | 0 |                          processValidationEvent(fd); | 
  | 49 |  |                      } | 
  | 50 | 0 |                  } | 
  | 51 |  |              }); | 
  | 52 | 0 |          } else if (w instanceof HasBlurHandlers) { | 
  | 53 | 0 |              ((HasBlurHandlers) w).addBlurHandler(new BlurHandler() { | 
  | 54 |  |                  public void onBlur(BlurEvent event) { | 
  | 55 | 0 |                      processValidationEvent(fd); | 
  | 56 | 0 |                  } | 
  | 57 |  |              }); | 
  | 58 | 0 |          } else if (w instanceof HasFocusLostCallbacks) { | 
  | 59 | 0 |              ((HasFocusLostCallbacks) w).addFocusLostCallback(new Callback<Boolean>() { | 
  | 60 |  |                  @Override | 
  | 61 |  |                  public void exec(Boolean result) { | 
  | 62 | 0 |                      processValidationEvent(fd); | 
  | 63 | 0 |                  } | 
  | 64 |  |              }); | 
  | 65 | 0 |          } else if (w instanceof KSLabel | 
  | 66 |  |                  || w instanceof org.kuali.student.common.ui.client.configurable.mvc.multiplicity.MultiplicityComposite | 
  | 67 |  |                  || w instanceof MultiplicityGroup) { | 
  | 68 |  |               | 
  | 69 |  |          } else { | 
  | 70 | 0 |              GWT.log("The field with key: " + fd.getFieldKey() + | 
  | 71 |  |                      " does not use a widget which implements an interface that can perform on the fly validation", null); | 
  | 72 |  |          } | 
  | 73 | 0 |          if (w instanceof KSSelectedList) { | 
  | 74 | 0 |              ((HasFocusLostCallbacks) w).addFocusLostCallback(new Callback<Boolean>() { | 
  | 75 |  |                  @Override | 
  | 76 |  |                  public void exec(Boolean result) { | 
  | 77 | 0 |                      processValidationEvent(fd); | 
  | 78 | 0 |                  } | 
  | 79 |  |              }); | 
  | 80 |  |          } | 
  | 81 |  |   | 
  | 82 | 0 |      } | 
  | 83 |  |   | 
  | 84 |  |      private void processValidationEvent(FieldDescriptor fieldDescriptor) { | 
  | 85 | 0 |          fieldDescriptor.setHasHadFocus(true); | 
  | 86 | 0 |          fieldDescriptor.getValidationRequestCallback().exec(true); | 
  | 87 | 0 |      } | 
  | 88 |  |  } |