i am doing a web application in flex. i have a list of items in mx:List control.
Mouse click on each item triggering an itemClick event and goes fine.
But when i press Enter key on focused items in the list, it is not triggering the event.
How can i enable my enter key to fire the event.
Thanks in advance….
Add a keyDown event listener to the list then add a function to check if the enter key is hit:
And: