Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が知りたいのは、Flex Datagrid で押されたキーが Enter の場合、伝播を停止し、偽の Tab Event をディスパッチすることです。
任意の提案、Thankxx
試す
if(event.keyCode == Keyboard.ENTER){ event.stopPropagation(); yourTarget.dispatchEvent(new KeyboardEvent(KeyboardEvent.KEY_DOWN, true, false, 0, 9)); }