06-30-2012 05:50 AM
How to determine that s perticular field such as BitmapField is selected or not? Is there a method such as isSelected()?
06-30-2012 08:11 AM
Hi,
If u want to click bitmapfield or if the current focus is in which field.
In first case you can override navigation click of any field like bitmapfield or labelfield..
In second you can find usinf Field f = getLeafFieldWithFocus(); and if(f instanceOf BitmapField) like that.
Regards,
Lakshman K
07-01-2012 09:18 AM
I agree with Lakshman's reply. You can use getLeafFieldWithFocus() or getLeafFIeldwithFocusIndex() on the manager which is holding this your field.
A Y.
07-02-2012 03:29 AM