Hi all,
I recently upgraded my application to Python 3.9 and it's now running on web2py 2.27. I had an issue with "LOAD with Ajax" where the dynamic content could not be rendered. I resolved this issue by replacing web2py.js in my app with the one in the welcome app and clearing the browser cache.
However, I have issues with web2py's paginate as well as search capabilities. It cannot go through when I click on the pagination link to view the next rows on the same page. Similarly, when I use the search menu to look for a specific entry in a table, after creating the new search, it cannot go through to render the requested row on the same page. Below is the js traceback captured from the browser network tab for case 1 and case 2, respectively. The common error for both is "Uncaught ReferenceError: w2p_ajax_disable_with_message is not defined". The only place where w2p_ajax_disable_with_message is referenced is in web2py.js, which as I mentioned above was copied from the welcome app.
Appreciate it if anyone could help to fix this issue.
Moe