Addition of tooltip behavior.
[utils] / wicket / components / src / main / java / org / wamblee / wicket / behavior / PreselectionBehavior.java
index 3331238b0b6d0f3a3cc30e27405dcfe04f4c9aa0..2a466c451bc77e799a5842f789471a1ded309370 100644 (file)
@@ -27,7 +27,7 @@ import org.wamblee.wicket.jquery.AbstractJQueryBehavior;
  * Preselection behavior that preselects unaltered text in forms. When applied
  * to a certain component, the behavior is valid for all children of the
  * component. Therefore, it is possible to attach this behavior to any component,
- * well as to a form or even individual fields in a form. It is not possible however to apply this
+ * well as to a form or even individual fields in a form. It is also possible to apply this
  * behavior to a page. The behavior applies
  * to text input fields and textareas. Upon focus, the text in the field is
  * selected if it it still identical to the default value.
@@ -45,7 +45,6 @@ public class PreselectionBehavior extends AbstractJQueryBehavior {
         .getHeaderContribution(PreselectionBehavior.class, PRESELECT_SCRIPT);
 
     public PreselectionBehavior() {
-        super(READY_FUNCTION, new NamespaceBehavior(), PRESELECTION_BEHAVIOR);
+        super(READY_FUNCTION, new SupportBehavior(), PRESELECTION_BEHAVIOR);
     }
-
 }