John,

>       I've been trying to figure out why interface is jacking up my
layouts
>every time I do a sort by tweaking my code, css, etc. After wasting a ton
>of time I saw the link for the source code in interface and looked through
>isortable.js.
>
>       Lo and behold: shs.display = 'block';

You could use the onStop event to change the style back to whatever you
need. I've used this technique correct a change in the CSS positioning
before.

onStop: function (){
        $(this).css("display", "inline");
}

You might even need to do this for onStart if you're having problems.

-Dan

Reply via email to