aspose file tools
The moose likes Swing / AWT / SWT and the fly likes Field loses focus? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "Field loses focus?" Watch "Field loses focus?" New topic
Author

Field loses focus?

Alan Smith
Ranch Hand

Joined: Oct 19, 2011
Posts: 150

Hi,

what does it mean when talking about input fields, that the field can lose focus? I have seen that a few times but I am reading a java book now and it mentions it but never explains it.

Thanks,
Alan
Jesper de Jong
Java Cowboy
Bartender

Joined: Aug 16, 2005
Posts: 12924
    
    3

In a GUI, normally one of the GUI elements (text boxes, buttons, etc.) has the focus, which means that if you type, the text appears in the text box that has the focus, or when you press space, the button that has the focus is clicked.

When the focus goes from one GUI element to another, for example because you press the Tab key, then the element that previously had the focus loses it, and it goes to the next GUI element.


Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
Alan Smith
Ranch Hand

Joined: Oct 19, 2011
Posts: 150

Ok, thanks. So basically the "active" element i.e. the button that has that square border thing in it when you are tabbing between buttons or the text field that has the blinking cursor.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Field loses focus?
 
Similar Threads
Spooky tabindex problem...
Can i see i a field have focus !
using tab key in jtable,my table consists panels ad cells
Cant able to get focus at perticular textfield in javascript
Is onchange="submit()" will cause the loosing focus from current inputText field ?