Hi Robert,
>thanks for the workaround. It works partly. In some situations we now have >double events - when the selection event is also fired - and sometimes in In my earlier mail I said that you should use the workaround instead of ListSelectionListener >our Jemmy tests the keyboard action isn't triggered although manually it >works. For complex editors it doesn't work either way. For complex editors, you will have to have registerKeyBoardAction on the underlying component. Thanks and regards, Janak >So we'll keep this in mind but look forward to the fix of this problem. > >Cheers, > Robert > > >----- Original Message ----- >From: "Janak Mulani" <[EMAIL PROTECTED]> >To: "ulc rbeeger" <[EMAIL PROTECTED]> >Cc: <[EMAIL PROTECTED]> >Sent: Thursday, August 31, 2006 11:37 AM >Subject: RE: [ULC-developer] Pressing TAB after editing in a cell of the >last column of a table eats the selection event. > > >> Hi Robert, >> >> https://www.canoo.com/jira/browse/UBA-6993 is a bug. The behavior is >> different from that in Swing. >> >> As a work around you could perhaps use the following instead of >> ListSelectionListener: >> >> table.registerKeyboardAction(new IActionListener() {..}, >> KeyStroke.getKeyStroke(KeyEvent.VK_TAB, 0, >> true), ULCComponent.WHEN_FOCUSED); >> >> Tab key has the effect of changing selection in a table so you can take >> the >> desired action in actionPerformed() for the Key board action instead of >> valueChanged of ListSelectionListener. Let me know if this is >feasible for >> you. >> >> Thanks and regards, >> >> Janak >> >> -----Original Message----- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] Behalf Of ulc rbeeger >> Sent: Monday, August 28, 2006 12:41 PM >> To: [EMAIL PROTECTED] >> Subject: [ULC-developer] Pressing TAB after editing in a cell of the last >> column of a table eats the selection event. >> >> >> Hi, >> >> there're several issues we filed into Jira that didn't get any answer so >> far >> (Some already 4 months old). The newest and most annoying is the >> following: >> https://www.canoo.com/jira/browse/UBA-6993 >> >> Is there a chance for getting this fixed anytime soon? >> >> Cheers, >> Robert >> >> P.S.: At least some kind of reaction would be nice to issues posted on >> Jira. >> Now we don't know: >> 1. Has someone from Canoo read the issue and decided that it's not >> important >> to take care of it now, or >> 2. Did it get lost and there's actually no person aware of the problem. >> >> > >_______________________________________________ >ULC-developer mailing list >[email protected] >http://lists.canoo.com/mailman/listinfo/ulc-developer _______________________________________________ ULC-developer mailing list [email protected] http://lists.canoo.com/mailman/listinfo/ulc-developer
