I use jQueryUI as well which is included in the view pages I create
that need it. I found that using the current in trunk way to include
jquery.js in web2py_ajax.html doesn't work:
response.files.append(URL('static','js/jquery.js'))
response.files.append(URL('static','css/calendar.css'))
response.files.append(URL('static','js/calendar.js'))
in the 1.88.X version the code used to be:
response.files.insert(0,URL('static','js/jquery.js'))
response.files.insert(1,URL('static','css/calendar.css'))
response.files.insert(2,URL('static','js/calendar.js'))
This forces the files in front of the other response.files items.
Using this jQueryUI works again.
Ron