[jQuery] Re: tableFilter Beta 2 is now live

2007-05-30 Thread Daemach
I posted a zip this evening that contains the source code and support files for tableFilter. You can find it here: http://ideamill.synaptrixgroup.com/?p=17 On May 29, 11:30 am, Daemach [EMAIL PROTECTED] wrote: The short answer is absolutely. If you're not in a serious rush I would

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-29 Thread Daemach
The short answer is absolutely. If you're not in a serious rush I would appreciate you giving me a day to let me get the code cleaned up - I decided to rebuild my domain over the weekend, so I'm still coming up to speed. There is a lot of cruft there now from trial-and- erroring IE performance

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-25 Thread Sean Catchpole
I'm not sure how you're doing your sorting, but you may find the following useful: // Array.Sort //Original: http://weetbixthecat.com/blog/2006/faster-javascript-sorting/ if(!Array.prototype.Sort) Array.prototype.Sort = function(p,f) { if (typeof p != string) throw new TypeError(); var o =

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-25 Thread Daemach
I'm considering adding the ability to generate a table on the fly from a JSON recordset, but only if there is some interest in that. I only use a button on the demo so you can see how fast it works. I normally use the document.ready function to parse as soon as the DOM is ready. In your case,

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-25 Thread Daemach
tableFilter can do a multi-column sort on an 800-row table in under 60ms - it takes a bit longer to move the table rows around :) On May 25, 11:18 am, Sean Catchpole [EMAIL PROTECTED] wrote: I'm not sure how you're doing your sorting, but you may find the following useful: // Array.Sort

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-25 Thread Sean Catchpole
On 5/25/07, Daemach [EMAIL PROTECTED] wrote: tableFilter can do a multi-column sort on an 800-row table in under 60ms - it takes a bit longer to move the table rows around :) Ah, well that's great news. I agree that manipulating the DOM is what takes a while. It sounds like you are