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 8100525
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T22:45:20+00:00 2026-06-05T22:45:20+00:00

I have a textField in my application which will be initiated programmatically (textField.setText() )

  • 0

I have a textField in my application which will be initiated programmatically (textField.setText() ) when user clicked in an item in JList.
later user will change this value manually.
I get stuck with using document-listener to detect changes in this text field.
When changes happens programmatically it must do nothing but if manually happens, it should change the background to red.

How to detect whether textField has been filled out manually or by textField.setText()?

txtMode.getDocument().addDocumentListener(new DocumentListener() {
        public void insertUpdate(DocumentEvent e) {
            if (!mode.equals(e.getDocument()))
            txtMode.setBackground(Color.red);
        }

        public void removeUpdate(DocumentEvent e) {
            if (mode.equals(e.getDocument()))
            txtMode.setBackground(Color.white);              
        }

        public void changedUpdate(DocumentEvent e) {
            //To change body of implemented methods
        }
    });
  • 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-05T22:45:22+00:00Added an answer on June 5, 2026 at 10:45 pm

    there are two ways

    • remove DocumentListener before setText("...") add DocumentListener back if done

    code

    public void attachDocumentListener(JComponent compo){
          compo.addDocumentListener(someDocumentListener);
    }
    
    //similair void for remove....
    
    • use boolean value for disabling “if needed”, but you have to change contens of your DocumentListener

    for example

     txtMode.getDocument().addDocumentListener(new DocumentListener() {
        public void insertUpdate(DocumentEvent e) {
            if (!mode.equals(e.getDocument()))
    
            if (!updateFromModel){
               txtMode.setBackground(Color.red);
            }  
        }
    
        public void removeUpdate(DocumentEvent e) {
            if (mode.equals(e.getDocument()))
    
            if (!updateFromModel){
               txtMode.setBackground(Color.white);
            }  
        }
    
        public void changedUpdate(DocumentEvent e) {
            //To change body of implemented methods
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a textField on my stage named 'adBuy', which when clicked I want
In my web-application i have a form which contains about 25 fields. Users will
I have following models setup in my Django application class School(models.Model): name = models.TextField()
I have a textfield where the user can type what ever he want into
I have a textfield which displays a result but I don't want it to
I have several TextField columns on my UserProfile object which contain JSON objects. I've
I have a textfield which takes in full name example: michael peter johnson in
I have used below code in my application of User Registration to interact with
We have developed a messaging application in j2me which adds text message, gets pictures
I have an application requirement where user chooses color & font for title, labels,

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.