Jörn Zaefferer schrieb: > Alex Calara schrieb: >> Ah, that does it. It's a little laggy, you can resize the window all >> day long with the columns adjusting and the footer stays exactly >> where it started off, and then the moment you let go of the mouse >> button, it snaps to the bottom of the longest column. I guess the >> jQuery resize event only triggers once the window is officially >> considered "RESIZED." This also explains the timer (is that 50ms?) on >> Inman's original script, constantly remeasuring. >> > Afaik Fireforx triggers the event after the resize has finished, while > IE triggers it already while still resizing. > > But I'd consider that a non-issue, or would someone blame you because > the layout is weird *while* resizing? > > The only tweak I can imagine would be to add a sort plugin and using > that instead of get().sort()... >
I think Yehuda has done some kind of sort plugin, I remember a conversation with him about that. It would take the sort function as argument.. Alternatively what about: sortFunc = ...; [].sort.apply(columns, [sortFunc]); -- Klaus _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
