You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:
have access to post topics
communicate privately with other members (PM)
not see advertisements between posts
have the possibility to earn one of our surprises if you are an active member
access many other special features that will be introduced later.
I have an old swing application where I need to change the tabbing order to something rather special for the users. Any ideas? It involves a lot of if then else business logic.
any suggestions?
I know it is probably not easy to attach your swing code but without seeing anything all I can tell you is that I had a similar issue and I created a new class that overrode the LayoutFocusTraversalPolicy class. Inside this I applied all the if/then/else business logic and then in the screen class I set the jPanel.setFocusTraversalPolicy(myTravelsalPolicy). anyway, that is the short and sweet of it. There is a lot more to it than that but start there.