A while ago I got an app from Bruno with an example app showing how to
open a modal window.
It works great in the example but when I copied it to my own app I
couldn´t get it working. After some debugging I found out that I need to
include the jquery.tools.min.js file.
The only way I could get it working was by adding it to
web2py_ajax.html. I added it to the file with:
response.files.insert(3,URL('static','jquery.tools.min.js'))
Everything was cool until I noticed that the small date picker calender
is not working anymore. Only way to get it to work is by commenting out
that jquery.tools.min.js file.
How do I include that tools file without disabling the date picker?
Kenneth