satya kalyani

Greenhorn
+ Follow
since Jan 07, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by satya kalyani

try this in the MyTableCellRender class --

19 years ago
get document of first textfield and set it as the document to the second textfield, something similar to the code below

JTextField text1 = new JTextField("Test");
JTextField text2 = new JTextField();
text2.setDocument(text1.getDocument());
19 years ago