I'm working on an application and i want to understand it's behavior.
Once i have already logged into the system i make one request through ajax to the back-end, it's a void method that will process some information and feed a table.
Meanwhile i have another tab, also in the same session as the one that called the void method, and i want to go to the system's dashboard, so i press the corresponding button in the menu. This second tab will ONLY go to the dashboard when the void method is done.
Why? I would need static webservices to do that for me? I assumed that once it's a void method and i don't need its answer that would work.