Hi all,
I have converted my app from web2py 2.0 to use web2py 2.0.6. Everything is
working fine except my jqueryUI dialog. I have used it all the 2.0.x
versions and it worked fine.
I am getting this error in firebug:
TypeError: i is undefined
...){if(typeof l!=="number")return j["outer"+g].call(this,l);return
this.each(funct...
I can't see why I am getting this error. I have used jquery ui like this:
var $dialog = $('<div></div>')
.html($allevents)
.dialog({
autoOpen: true,
height:400,
width: 300,
title: $dialogTitle
});
$dialog.dialog('open');
I have been using jqueryUI like this in the same app for the longest while,
then suddenly it stopped working. I am also using the same version of
jqueryUI too.
I tried many things, I don't know what else to do.
Thanks.
--