I have a component that is input by a barcode scanner with a tab key configured after the input text so that is properly triggers a datachange event.
My event handlers are coded to reset the focus to the input component, however, the tab characters seems to be executed after all of my events regardless of event order, tab order, parent container, etc.
Any tips/tricks to working with this type of functionality? The way I want it to function is for the user to be able to scan, scan, scan without having to manually click back in the input box. I have tried a number of things related to gainFocus events on other components to push it back over to the original field, tab order manipulation, and just about everything I can think of.