I have a pretty simple question: Is there a more efficient way to implement a large table with fixed rows and columns than this stripped down jsFiddle example I created, or is there a better way to write the few lines of jQuery that power it?
Before anyone jumps on me for posting a question that's similar to others out there, let me explain myself. I realize there are multiple plugins that accomplish similar effects to my example above. However, none of them (that I could find) provide the flexibility and functionality that I require.
Here are a few caveats that my implementation must support:
- Must have the ability to hide and unhide entire rows
- Must support cells of a dynamic height
- Should (ideally) use the browser's scrollbars to navigate the table
- Must be fast in order to support large tables
- The table must be able to be dynamically generated with knockoutjs
The main problem I see with my implementation is that it lags in Chrome and IE. It's hard to notice with the table I provide in the example, but the left column and top row take a moment to "catch up" to the rest of the table. This problem becomes much more pronounced when the table is large and has other javascript running in the background as well.
So, is there a better way to implement this given my caveats?
Thanks so much to anyone that offers an answer!