Hello
I am using JTextField as a render for JTable. I wish to set a doumentfilter on that TextField.Plz help to slove this problem.
Below is the code i used for rendering.
class...
Type: Posts; User: nimishalex
Hello
I am using JTextField as a render for JTable. I wish to set a doumentfilter on that TextField.Plz help to slove this problem.
Below is the code i used for rendering.
class...
public void removeUpdate(DocumentEvent e) {
//System.out.println(getText());
if(getText().equals("")){
setText("0");
}
}
I tried...
Hi PF
i need to check in when the user is typing/deleting. Plz help me to find a solution ,,Thanks
Hello PF
Really thats i want .. I want to automatically updated into 0.
Thanks
hi relixus
i am newbie here. Can u give me some example how to use JFormattedTextfield for this.
Thanks
Hi all
In my Swing application i am using Jtextfields.If Jtextfield have empty string("") i need to set it to 0 always .Is there any easy way to set this without if else comparison.
Thanks
...