If you are experiencing an issue please mention the full platform your 
issue applies to:
IDE: NetBeans/Eclipse/IDEA NetBeans 8.2
Desktop OS Windows 10
Simulator 7.3
Device Simulator

I too am a Swing Developer and am looking for an action event on a Table so 
that 
when I access a cell (focusgained) I can take an action like popup a dialog 
of choices, however
I am not sure which listener to use.
I have looked at the addFocusListener, however I do not receive focusGained 
or focusLost event

        A3TimeSheetTable is of class  com.codename1.ui.table.Table

        A3TimeSheetTable.addFocusListener(new 
com.codename1.ui.events.FocusListener() {
            
            @Override
            public void focusLost(Component cmp) {
                System.out.println("focus Lost Component = "+cmp);
            }
            @Override
            public void focusGained(Component cmp) {
                System.out.println("focus Gained Component = "+cmp);
            }
        });

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/bc600a1b-34da-4a3e-9395-a32c4b763447%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to