the question is in the title.
I'm displaying an int number in my textfield but it keeps adding a "," when I exit the field... any ideas why?
for the code lovers :
the onfocuslost calls:
if(textStiffness != null){
String s1 = textStiffness.getText();
if(s1 != null){
stiffness = Float.valueOf(s1.replaceAll(",", "")).intValue();
stiffness = Math.max(0, stiffness);
}
}
then :
if(textStiffness != null){
textStiffness.setText((""+(int)stiffness).replaceAll(",", ""));
}
I checked the text set in the field and its correct 10000, but then it gets changed to 10,000 and I can't see why