Total members 11890 |It is currently Sat Apr 20, 2024 8:53 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Hi,

I'm trying to extend the JTextField class to a JNumField subclass in
which only numeric key-in would be accepted.
This is probably a very common problem, but I could not find a simple
solution to it yet.

I tried with a MaskFormatter, as explained here (see pjstroh's
message) but encountered problems when trying to compile the code.
Code:
http://forum.java.sun.com/thread.jspa?threadID=418002&messageID=1876495


So, I tried somehting different by checking the keyTyped key event.
But this does not work. Does someone know why ?

Here's some code from my JNumField class:
Code:
// *** Initialisation ***
public void init() {
setBackground(Color.white);
addKeyListener(this);
hasDecimalPoint = false;
}

// *** Impl�mentation de l'interface KeyListener ***
public void keyTyped(KeyEvent ke) {
char c = ke.getKeyChar();
if (!Character.isDigit(c))
ke.consume(); // prevent event propagation
}

Thanks for any help.




Author:
Proficient
User avatar Posts: 280
Have thanks: 1 time

Solved. The problem was that I adding the key listener from within the
init() function which is -I assume- called only for applets.
As my class is not an applet, the init() function was not called.
I can now catch key events as I moved addKeyListener(this) in the
class constructor.

_________________
Please recommend my post if you found it helpful


Author:
Proficient
User avatar Posts: 228
Have thanks: 0 time
Post new topic Reply to topic  [ 2 posts ] 

  Related Posts  to : Only numeric input in JTextField
 Get Form Numeric value     -  
 Input-Output Operations     -  
 input suggestion using Javascript     -  
 getting a full line input     -  
 Input username and password in JAVA     -  
 Read input from SWITCHES and PORTS     -  
 Google Chrome input file     -  
 Read input from ports and print it on the LEDs     -  
 Input three numbers and then sort non descending order     -  
 Simple code for taking input from shell     -  



Topic Tags

Java Swing
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com