Situation
In my Wicket app, I have a page containing two tags. Each time a tab is selected, its contents are selected through Ajax, so every time you switch to another tab, its contents are downloaded from the server.
On one of the tabs, I have an input field in which there is an onblur event that saves the contents of the field through Ajax.
Problem
If the focus is in the input field and I click on an empty area of ββthe page, the Ajax request is launched and the data is saved.
If instead of clicking on an empty area of ββthe page I click on another tab, the Ajax request to save the input field is launched, but not the Ajax request to switch the tabs.
Is the number of concurrent Ajax requests limited to one in Wicket?
source share