|
How to set focusable property explicitly? -
04-07-2008, 06:46 AM
HI
net.rim.device.api.ui.Field.
In our class which extends Field we are using this in the constructor:
super(Field.NON_FOCUSABLE);
super(Field.FOCUSABLE);
After creating an object by CustomField(Field.NON_FOCUSABLE);, How can we set this component focusable.
there is no method like setFocusable(boolean b)
|