Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8152001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:34:51+00:00 2026-06-06T15:34:51+00:00

I want to set focus on inputText field in JSF when there is a

  • 0

I want to set focus on inputText field in JSF when there is a validation error on that particular inputText. How can I implement this?

I thought validatorMessage on the inputText would do this out of the box but it appears not.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T15:34:52+00:00Added an answer on June 6, 2026 at 3:34 pm

    There is no such default behaviour. You need to implement it yourself or use a 3rd party library for the job. Basically, during the render response you need to walk through the submitted form for all UIInput components and find the first one whose isValid() returns false and then store its client ID in the request map so that you can print it as a JS variable.

    form.visitTree(VisitContext.createVisitContext(), new VisitCallback() {
    
        @Override
        public VisitResult visit(VisitContext context, UIComponent component) {
            if (component instanceof UIInput && !((UIInput) component).isValid()) {
                context.getFacesContext().getExternalContext().getRequestMap()
                    .put("focus", component.getClientId(context.getFacesContext()));
                return VisitResult.COMPLETE;
            }
    
            return VisitResult.ACCEPT;
        }
    });
    

    Then you can use the following script to set the focus:

    <h:outputScript target="body">
        var focus = '#{focus}';
    
        if (focus) {
            document.getElementById(focus).focus();
        }
    </h:outputScript>
    

    The JSF utility library OmniFaces has a reuseable component for this, the <o:highlight> (source code here and showcase demo here). It additionally also sets a styleclass on the invalidated inputs so that you can specify for example a different background color by CSS.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to set focus on inputText field in JSF on page load. How
I want to set focus on entry that is not visible in pyGTK for
Hi I want to set focus on <h:inputText> element whenever rich:panelBarItem is opened. I
I want to set focus on particular div using jquery or javascript. i have
I am trying to set focus on a hidden text box. I want that
I want to set a text in a specific label on focus of an
I want set Listbox background to transparent but not working Is there any idea?
I'm using multiple sheets within my Excel application and want to activate (set focus
Pretty straight forward question, I have a GtkEntry widget that I want to set
Am using Django's form for my login page. I want to set focus to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.