Top "Jtextfield" questions

JTextField is a Java Swing component that allows the editing of a single line of text.

JTextField margin doesnt work with border

I have a JTextField and i want to setMargin. But when i set any border, it doesn' t properly work. …

java swing margin jtextfield insets
How to make a simple keypad on java to input in JTextFields efficiently?

I am working on a keypad on java that will be used to input data in two JTextField (x & …

java jtextfield keypad
Java equivalent to C# TextBox TextChanged event

in C# there is an event for textboxes as follows private void fooText_TextChanged(object sender, EventArgs e) { //do something } …

c# java swing jtextfield textchanged
Java, how can I reset JTextField

I made a simple search gui method to search for products in DB and it works flawlessly. However, after the …

java swing jframe jtextfield jradiobutton
How to change the value of the JTextField?

I am trying to built a Java application using JFrame with Swing, and I have 5 JTextField instances in there. One …

java swing jtextfield documentlistener
Setting text background color?

How can I set text background color in JOptionPane? Image: UIManager UI = new UIManager(); UI.put("OptionPane.background", Color.white); …

java swing jtextfield look-and-feel nimbus
how to find source component that generated a DocumentEvent

Is it possible to discover which oject generated a DocumentEvent? Something like i can do with ActionListener: JTextField field = new …

java swing properties document jtextfield
swing: appropriate Listener for JTextField change events

Which type of Listener do I use for listening to changed text events in a JTextField? (I should know this …

swing listener jtextfield
Best way to constrain user to enter a time in a JTextField

In one of my java applications, there is a field where the user is supposed to enter a time. I …

java swing date time jtextfield
Implement search textField into jTable

Now I have a search textField implemented with KeyReleased event, which don't found/update jTable when I start typing for …

java swing jtable jtextfield rowfilter