Resizables bug, IE7 gives error when using 'proxy'
I'm getting an error when I try to use the 'proxy' option with
resizables, on IE7. I haven't checked on IE6 yet, but it could be
showing up there as well. The basic error is 'Invalid Argument' (not
very helpful, but I don't have a javascript debugging agent set up on
IE atm, I'll try in a little while to see if I can get some more
information back). The same error repeats dozens of times on each
resize, so it's being looped over somewhere. I'm using a copy of
ui.resizable.js checked out on 4/21/08.
My code is:
$('.resizableColumn').each(
function() {
$(this).resizable({
handles: { e:$(this).children('.dragHandle') },
proxy: 'proxy', //Broken for IE7, not sure what the fuck is up
with that bullshit.
stop: function () {
resizeCols();
}
})
}
);
Anyone else having this problem or know if I'm doing something wrong?
I can open a bug about this if it is indeed a bug and not my error...