The documentlistener tag has no wiki summary.
7
votes
3answers
120 views
Using Actions with DocumentListener
I'm developing an application where I want something to be triggered both by the user updating the contents of a JTextArea, or manually via pressing a JButton.
I have done the first part using a ...
2
votes
2answers
39 views
Constantly reading a String from JTextField
I've got a DocumentListener to look for any changes in the JTextField:
public class MyDocumentListener implements DocumentListener {
static String text;
public void ...
2
votes
2answers
41 views
extend functionality of addDocumentListener
I've a text field which extends javax.swing.JTextField and also have document listener like this
public class MyTetField extends javax.swing.JTextFiled{
public MyTextField(){
super();
...
2
votes
4answers
118 views
Listening to many JTextFields and calculate value sum in a Row
I have an application that gets input from user;
it has 8 rows of JTextFields with 3 columns:
+-----------+-----------+-----------+
| Field 1-1 | Field 1-2 | Field 1-3 |
...
2
votes
1answer
282 views
How to get JTextField name in which is Document placed?
Is there something like event.getSource for DocumentListener too?
Im trying to change color of just one JTextField in which is text changing.
Here is my DocumentListener:
DocumentListener posluchac ...
1
vote
1answer
29 views
workflow or EventListener
We are building an extranet sharepoint portal for our clients. Each client will have a site. Total number of sites will be between 2000-3000.
I have a requirement to copy a document from a ...
1
vote
2answers
48 views
Get Element name in DocumentEvent
Is it possible to get the root elements name, actionCommand, etc... in DocumentListener. I need to get the JTextField name to keep a track of which textfield was modified.
public void ...
1
vote
1answer
62 views
Can instantiate the type DocumentListener
I need to do this: Value Change Listener to JTextField
I'm trying the solution of Condemwnci, but I'm getting that error in the line:
textField.getDocument().addDocumentListener(new ...
1
vote
1answer
122 views
Document Model in Java GUI
I have two JTextAreas in my GUI, and I have a DocumentListener on each JTextArea, what I'm trying to do is for example when I type abc in text area number 1 it will take that document text modify it ...
1
vote
2answers
318 views
DocumentListener slows down Document.setCharacterAttributes method?
this is my first question in this site, though is not the first time I enter to clear my doubts, awesome webpage. :)
I'm writing a java program that highlights code in a JTextPane and I'm changing ...