• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Java Swing

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am rendering my JTable with JPassword Field,but it is rendered as password field only after I am typed the value, but while I am entering the value in the rendered cell it is not showing as '***' instead it is showing as 'abc'(For eg.).How can I achieve it while typing itself.
If anybody can help me please let me know.
 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Arun Kumar,

Add this below method to your Editor class

public Object getCellEditorValue()
{
String label = new String(password.getPassword());
System.out.println("Password is: "+label);
return label;
}




I am sending some code for further help:
1) Add this line to paswordfiled column

table.getColumnModel().getColumn(0).setCellEditor(new PasswordEditor(new JCheckBox()));

2) Use this editor class

class PasswordEditor extends javax.swing.DefaultCellEditor {
protected JPasswordField password;

public PasswordEditor(JCheckBox checkBox) {
super(checkBox);

password = new JPasswordField();
password.setOpaque(true);
}

public java.awt.Component getTableCellEditorComponent(JTable table, Object value,boolean isSelected, int row, int column)
{
String label = (value ==null) ? "" : value.toString();
password.setText( label );
return password;
}

public Object getCellEditorValue()
{
String label = new String(password.getPassword());
System.out.println("Password is: "+label);
return label;
}
}


All The Best.
 
reply
    Bookmark Topic Watch Topic
  • New Topic