Re: Editable CellTable with password column

2012-08-20 Thread Kanagaraj M
I have tried doing that. My code is something like follows public class EditPasswordTextCell extends EditTextCell { @Override protected void edit(Context context, Element parent, String value) { setValue(context, parent, value); InputElement input = getInputElement(paren

Re: Editable CellTable with password column

2012-08-17 Thread Juan Pablo Gardella
You must write a custom EditTextCell. 2012/8/17 Kanagaraj M > I have CellTable with password as one column. I want the password column > to be editable. > > I have used EditTextCell to make the password as editable, but the problem > is, the password is shown as plain text. > > As like we have P

Editable CellTable with password column

2012-08-17 Thread Kanagaraj M
I have CellTable with password as one column. I want the password column to be editable. I have used EditTextCell to make the password as editable, but the problem is, the password is shown as plain text. As like we have PasswordTextBox, do we have any alternative for EditTextCell? or i need t