Tagged Questions

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

learn more… | top users | synonyms

8
votes
2answers
2k views

Detect enter press in JTextField

Is it possible to detect when someone presses enter while typing in a JTextField in java? Without having to create a button and set it as the default.
8
votes
2answers
8k views

Value Change Listener to JTextField

I want the message box appear immediately after the user change the value in textfield. Currently I need to hit enter key to get the message box pop out. Anything wrong to my code? ...
7
votes
1answer
340 views

How to create a Jlabel inside JTextArea like in Facebook?

Is there a way I can create a JTextArea or JTextField with some JLabels inside it, like in this screenshot from Facebook: What I am trying to do is put some JButtons with titles like "Apple", ...
6
votes
5answers
665 views

How to set a custom background color on a line in a JTextPane

I would like to alternate between gray and white as background from one line of my JTextPane to the next. I tried to do this by overloading the paintComponent() method and drawing the background ...
5
votes
2answers
193 views

JTextField limit input to certains chars only

i'd like to create JTextField with input characters limited to someting like "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVXYWZZ0123456789+&@#/%?=~_-|!:,.;" so i tried overriding public class ...
5
votes
1answer
503 views

Decorating a JTextField with an image and hint

I'm trying to create some nicer looking JTextFields with an image and a hint. To do this I made a decorator that overrides the paintComponent method. The reason I used a decorator is that I wanted to ...
5
votes
4answers
371 views

Is it possibly to create selectable hyperlink with basic Swing components in Java?

I am trying to add a hyperlink to a JPanel. I would like to make it's text blue (and underlined) and the link should be selectable (to copy some part of it). So I tried to use JLabel: yes, it allow to ...
5
votes
3answers
682 views

Can I limit the length of text in a JTextField which can be painted, while still storing the full text?

I have a text field in my application. Despite it being a text field, users sometimes paste huge amounts of text into it. Additionally, other functions of the problem set large amounts in as well. ...
4
votes
5answers
75 views

How can I select text over two different JTextField's?

Lets say I have this code: public static void main(final String [] args) { final JFrame frame = new JFrame("Display Keyword Panel"); final JPanel panel = new JPanel(new BorderLayout()); ...
4
votes
3answers
309 views

How to make a text field for searching(with tips like a google search)

I want to make a window application for PC using java swing. I would like to make a text field there. While typing to that text field I need it to show tips under that text field. And user can select ...
4
votes
2answers
402 views

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 JTextField(""); field.addActionListener(actionListener); ...
4
votes
6answers
729 views

Example text in JTextField

I am looking for a way to put example text into a swing JTextField and have it grayed out. The example text should then disappear as soon as any thing is entered into that text field. Some what ...
4
votes
3answers
152 views

getFocusOwner with a custom class

I need help working getFocusOwner(). I have a Sudoku game that I made in Java and I want to add arrow key navigation to the program. I did some research and found that using the focus system would be ...
4
votes
4answers
4k views

Swing JTextField how to remove the border?

Is there anyway to remove a border in a JTextField? txt = new JTextField(); txt.setBorder(null); // <-- this has no effect. I would really want it to look like a JLabel - but I still need it ...
4
votes
1answer
1k views

setBorder on JTextField does not work ? or does it?

The code is like this: JTextField txt = new JTextField(); txt.setBorder(BorderFactory.createMatteBorder(2,2,2,2,Color.red)); However the text field is ignoring my call to setBorder. No changes ...
4
votes
4answers
3k views

Java JTextField with input hint

I would like to add a hint value to my JTextField. It should look like Firefox rendering of <input type="text" title="bla">. This creates a edit field with the text 'bla' in the background. If ...
3
votes
1answer
74 views

Java: JTextField resizing upon minimize

I have a JTextField as well as a JTextArea in a JFrame. When the application runs however, the JTextField gets resized if I minimize the window. It usually doubles or triples in height, but it's not ...
3
votes
1answer
33 views

JTextField - setColumns() method not working for me

my problem is that my JTextField -setColumns(int) "field1.setColumns(5);" ...doesn't work. I'm guessing its a layout manager problem. However, I'm learning from an exercise book. The only layouts I ...
3
votes
1answer
52 views

JTextField getting cutoff without expanding window

I have a Java Swing application which has a JTextField inside it. I want to assign a minimum width to the field so it is expanded no matter what. I even tried starting it with some text inside the ...
3
votes
3answers
80 views

How to make a JTextField appear when clicking an image?

So I'm trying to make this program that allows the user to tag photos using java (kinda like Facebook tagging). I have already done loading the image, and making mouselistener when the user clicks an ...
3
votes
2answers
122 views

JTextField do not work keyListener

Sorry for my English. I have some problems with JTextField and with KeyListener. I have the code below : package com.gugnovich.tasks; @SuppressWarnings("serial") public class Task1Panel extends ...
3
votes
1answer
112 views

JTextField key listener is one behind after pasting

I am trying to check that the text in a JTextField matches a perticular pattern, and if it does / doesn't display a message the user. This is what I have so far: public class input extends ...
3
votes
2answers
72 views

Array of numbers inside a JTextField - Java

I'm trying to make a JTextField receive an array of numbers. I tryed with "for" and all the stuff needed to run an array, but without succes. Here is the piece of code. private void ...
3
votes
2answers
151 views

Document filter is not working in Java?

In text field more than 10 characters na, it has to show an error. For that i used document filter: JTextField field = (JTextField) txtFld; AbstractDocument document = (AbstractDocument) ...
3
votes
3answers
82 views

select all on focus in lots of jTextField

I have lots of jTextFields in my application (About 34 jTextFields) and I want all of them select all of their text when get focus and select none of text on focus lost. Is there any way to do this ...
3
votes
2answers
155 views

Simple way to cancel user input on esc key pressed?

Is there a simple way to cancel the user input in a JTextField when key "esc" is pressed ? I mean something different that a key listener and a data backup. Thanks
3
votes
1answer
78 views

Overwriting getText of JTextField

I wish to overwrite getText() so that it can return a null value instead of a a blank value. I noticed that getText() is a part of JTextComponent and I've been unable to successfully overwrite it. ...
3
votes
3answers
127 views

Questions: controlling a Swing GUI from an external class and separating logic from user interface

UPDATE: I'm using Netbeans and Matise and it's possible that it could be Matise causing the problems I describe below. UPDATE 2: Thanks to those who offered constructive suggestions. After rewriting ...
3
votes
1answer
174 views

How to make the cursor in a JTextField span multiple rows in FlowLayout?

How can I make the cursor start at the top left of the JTextField? The text just stays centered when I adjust the height with .setPreferredSize(). Here is the code for the fields and buttons. ...
3
votes
4answers
2k views

JTextField Fixed Height

How do I get the JTextField to have a fixed height when the Frame is maximized? I want it to look sort of similar to the Skype application on Ubuntu. private JTextField username; private ...
3
votes
3answers
386 views

JTextField: focus next component when textfield is full / autoskip / Auto-Tabbing

I want to implement autoskip with JTextField, but don't know what is the best way to do this. What is autoskip/Auto-Tabbing? When you reach the defined length limit of a textfield, you are ...
3
votes
2answers
268 views

Replace letters with numbers as user types in a JTextField

I have a JTextField for users to enter a serial number. The form of the serial number is such that it contains none of the letters I, O or S, since they look similar to 1, 0 and 5. What's the correct ...
3
votes
1answer
209 views

JTextField that has inner fields or preformated format, something like the ip field in windows

I want to create a text field that will be for dates and will have dd.mm.YYYY format. Now what I want the user to type only the numbers, not the dots to. So the field would be like: _ _. _ _ . _ _ _ ...
3
votes
3answers
3k views

How can I control the width of JTextFields in Java Swing?

I am trying to have several JTextFields on a single row, but I don't want them to have the same width. How can I control the width and make some of them wider than others? I want that they together ...
3
votes
1answer
429 views

TextField Listener

there's a swing JTextField, and I want to add a listener, so whenever the users types a single letter, there's an event. There's a ValueChanged event in scala api, but I don't get it what's it's peer. ...
3
votes
3answers
768 views

Help on writing your own javax.swing.text.Document

I'm writing a Java TextComponent where the underlying document has some structure. It is very short, basically one line. I need to be able to override the response to inserting or deleting characters ...
3
votes
1answer
2k views

Java: link JSlider and JTextfield for float value

what is the best and easiest way to link a JSlider and a JTextField so that if one changes, the other gets updated too, but there is no recursive loop? thanks!
3
votes
2answers
187 views

Ctrl-Delete in JTextField

How can I get JTextFields to allow Ctrl-Delete and Ctrl-Backspace when editing text? In various other programs, these key combinations can delete an entire word in one go. From what I can tell, the ...
3
votes
8answers
4k views

Is there any way to accept only numeric values in a JTextField?

Is there any way to accept only numeric values in a JTextField? Is there any special method for this?
3
votes
1answer
1k views

Getting ENTER to work with a JSpinner the way it does with a JTextField

First, to make my job explaining a bit easier, here's some of my code: JSpinner spin = new JSpinner( ); JFormattedTextField text = getTextField( spin ); text.addActionListener( new ...
2
votes
2answers
59 views

Make a program automatically add text fields in java [closed]

Maybe there is a similar question to this, but I couldn't find a one. Id like my program ( awt or swing ) to add controls ( like text fields ) automatically. For example : A dialog program has 10 ...
2
votes
2answers
41 views

How can I add padding to a jtextfield

How can I add some padding to a jtextfield? I've tried tf.setMargin(new Insets(5,5,5,5)); which doesn't have any effect.
2
votes
2answers
99 views

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 } the code in the fooText_TextChanged is fired once the text ...
2
votes
3answers
58 views

Get boolean from a JTextField

I am trying to take the values from the text fields below to use with parent.addNewRoom(roomNo,roomEnSuite); but roomEnSuite is a Boolean value in the parent class. What is the correct procedure to ...
2
votes
2answers
51 views

Placing JTextFields in a JFrame of a Java GUI

I have: public class BaseStationFrame1 extends JFrame { JButton activateButton; JButton deactivateButton; BaseStation bs; JTextField networkIdField; JTextField portField; ...
2
votes
1answer
48 views

Limit User Control of JTextField

I've got a game where you create words using letters in a letter bank. Every time a letter is typed, I want the letter icon to disappear, and reappear when it is erased. I have most of the ...
2
votes
2answers
114 views

Java Swing JtextField inset

I am working with Netbeans GUI and I would like to add 3 pixels of space at the beginning of my jTextField : I have tryied with setMargin, setInset in the GUI but it doesn't change anything. I ...
2
votes
2answers
121 views

How do I get user input from a JTextField?

I am attempting a very simple form designed to take user input into a JTextField and show that same input via a pop up dialog. I can hardcode the JTextField to have a preset number using setText(). ...
2
votes
1answer
152 views

temporarily disable ok button on a JDialog, accordingly to a JTextField validation

I have a JDialog created in a fashion like this, accordingly to Oracle's tutorial. using the JOptionPane constructor: optionPane = new JOptionPane(array, ...
2
votes
2answers
204 views

JTextField's setText method doesn't work from a KeyListener

I'm puzzled as to why a JTextField doesn't seem to just "clear out" by using the setText("") method on it, when this is coming from a KeyListener. It works fine from an ActionListener, except that, ...

1 2 3 4 5 6