Tagged Questions
1
vote
1answer
85 views
Add DocumentListener to validate multiple JTextFields
Code given below does real time validation for one JTextField. While entering some values to txt1 enables the save button and removing values reset the save button to disable. I use Netbeans as IDE.
...
2
votes
2answers
47 views
How can I check whether a String is purely letters?
I want to run a validation check on a JTextField to ensure that it contains only letters. What is the simplest way to do this?
0
votes
2answers
241 views
How to validate jtextfield which accepts only float/decimal value in java swing?
I am trying to validate text field such that it accepts float or double values like .25, 0.2, 111.25
It should not accepts values like ...25, 0.2.2. etc
1
vote
3answers
697 views
How to character and Numeric values restrict in TextField Java
I have two questions regarding character and numeric values limitation. I have listening to focus lost events and validating Name (character) and Contact (numeric) TextFields.
1. How do I restrict ...
0
votes
1answer
67 views
IDocumentFilter using a HashMap as a dictionary Menu , to validate on a JTextField
I have a Hashmap filled with information from a table in Sybase , with this structure
-INDEX - CHARACTERS
----1---- 1234567890
----2----- abcdefg..
I'm tryng to set a new ...
1
vote
0answers
43 views
Sub-Class of JTextField , that only Accepts Alphanumerical Value and . (dot) [duplicate]
Possible Duplicate:
jTextField accept only alphabet and white space
Ey!
i have a Custom JTextField (extends from JTextField) , this CustomJTextField ,mainly has the JtextField Methods in ...
1
vote
2answers
1k views
jTextField validation for numbers and one decimal point?
I need to set a jTextField to accept only numbers and one decimal point.Nothing else. Decimal point can't be typed more than once and no other characters are allowed. How can I do this?
I typed this ...
2
votes
2answers
1k views
Form validation for JTextfield in Java?
Is there an easy way to validate a group of JTextFields in Java. I am currently using sqlite manager, neatbeans IDE to create a simple form that collects information to add a job into the database. I ...
-4
votes
1answer
80 views
Validate more than one component on button click [closed]
I have a user registration form prepared in Swing (Java) So how can I apply validation all of them. Like I need a validation for the name and mobile no on one button click.
How to validate more than ...
-2
votes
1answer
124 views
Textfield validation using Focuslisteners [duplicate]
Possible Duplicate:
Enable JButtons in java after JTextFields have been validated for numeric values greater than 0?
I am creating a java application where I have some JTextfields. I need ...
0
votes
3answers
2k views
Adding textfield validation to multiple textfields
I'm trying to add validation to 4 JTextFields using only numeric characters (0-9). The code I have for one JTextField is:
txtf_xCoord.addKeyListener(new KeyAdapter()
{
@Override
...
0
votes
4answers
2k views
How to allow only floats in a JTextField in Java
I am trying to add a simple currency converter tool to my program yet I hit barrier. Is there a simple way of only allowing float numbers as input to a JTextField in Java. From what I have read ...
0
votes
3answers
295 views
Validation of input integer
How can i validate an input in the JTEXTfield? If I want it in the ff:
1. An integer
2. Only contains 0-12
For example of valid input (hour and minute),
Hour = 12
Minute = 30
Example of invalid ...
1
vote
4answers
1k views
No blanks in JTextField
How can I forbid users to put blanks into a JTextField?
It should not even be possible to write blanks.
