I have a text component decorated using FormComponentFeedbackBorder. I have something like the following:

userName.add(new AjaxFormComponentUpdatingBehavior("onblur"){
            @Override
            protected void onUpdate(AjaxRequestTarget target) {
                target.addComponent(feedbackPanel);
                target.addComponent(nameBorder);
            }                       
        });

Now even though I have added the border as the target of ajax, i dont see the border updating properly. I also see that FormComponentFeedbackBorder.updateFeedback() is not getting called when responding to ajax request. So the errorIndicator always shows up invisible. Any idea why this is the case? or am i missing something here.
The FeedbckPanel updates properly.

-- karthik --

Reply via email to