start call back issue in ui.sortable
Hi,
I've just upgraded to jquery-1.3b2.js and jquery-ui-
personalized-1.6rc4.min.js.
The .sortable function I wrote has a start callback which no longer
seems to be being called.
as an example:
$(".col").sortable({
connectWith: [".col"],
handle: "h2 span",
placeholder: "placeholder",
forcePlaceholderSize: "true",
tolerance: "intersect",
start: function(e, ui) {
alert("in start");
}
});
No longer works, but is fine if I revert back to current release. This
is my first real .sortable implementation, so I'm loathe to suggest
this is a bug without knowing for sure that the .col connecting with
other .col's is ok.
forcePlaceholderSize: "true" seems to work fine in Firefox, but not
IE.
Anyway, thanks very much for all your work on what is rapidly becoming
an essential library for me.
Cheers,
Ant