|
custom text field is not consuming backspace -
11-05-2009, 02:43 AM
Hi All,
I have implemented a custom text field that extends BasicEditField..
public CustomTextField(String txt){
super("", txt, 300, BasicEditField.EDITABLE | BasicEditField.FOCUSABLE | BasicEditField.ACTION_INVOKE);
isSearchBox = true;
textFieldFont = textFieldFont.derive(Font.PLAIN, 12);
textFieldHeight = textFieldFont.getHeight();
textFieldWidth = Graphics.getScreenWidth()-90;
setText(txt);
}
This is my constuctor..
When textfield already contain some text it wont consume backspace event. It shows all other key chars but when at start i click backspace(from simulator key pad) no action is take place. Although it has to take as i havent overrided any other method for doing anything manually.
Please anybody if know what to do. please let me know.
Thanks.
Crazy for BlackBerry
|