-
22 Jul 2009 6:10 PM #1
Password Field in GirdEditor
Password Field in GirdEditor
I would like to have a masked password field in an EditorGrid. THis is my current code, but it is not masking the password:
Any ideas?Code:column = new ColumnConfig("password", "Password", 100); TextField<String> passwordField = new TextField<String>(); passwordField.setAllowBlank(false); passwordField.setPassword(true); column.setEditor(new CellEditor(passwordField)); columns.add(column);


Reply With Quote