Check out FormComponentFeedbackBorder, or you can do what I do and
just make your own markup container like so (untested):

public class ErrorIndicator extends WebMarkupContainer {
   FormComponent component;

   public ErrorIndicator(String id, FormComponent component) {
      super(id);
      this.component = component;
   }

   public boolean isVisible() {
      return component.hasErrorMessage();
   }
}

On 8/22/05, Gregg D Bolinger <[EMAIL PROTECTED]> wrote:
> I have been able to use the FeedbackPanel just fine.  What I am looking at
> is using inline error messages.  Any information on how to do that?
>  
>  Thanks.
>  
>  Gregg
>  
>  
>


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to