Ken Colvin

Results 12 comments of Ken Colvin

Do you have this working with Laravel 6? Can you show me a demo? Basically, I used the defaults in your instructions, so I would assume it should work with...

The "MIGHT happen 1% of the time" is not accurate. It depends on your framework. I have the server side do all the initial sorting. Tablesorter is a great plugin....

Thanks. I think you want f instead of i. `OLD: return n.startsWith(i);` `NEW: return n.startsWith(f);` Also, I suggest this lowercase check of user input 'f' `return n.startsWith(f.toLowerCase());` Do these filter...

IE does not support startsWith, here is an alternative `return n.substr(0, f.length)===f.toLowerCase();` see https://stackoverflow.com/a/30867255

- "filter_ignoreCase: true" does not work when the column is select2 (filter-select) `Animals ` - Here is the full HTML ``` .tablesorter thead th, .tablesorter tfoot th { text-align: center...

Thanks for the demo. I am using sticky headers so I want the totals to be in the header. Can I put these into so sticky headers will always show...

How can I show the column totals outside the table, on top of the table? When the user filters the columns, I want to dynamically update the totals. So if...

That did not work, the user's prior selection is still showing in a new session. I closed the browser and open a new one and the user's prior selection is...

The demo is giving an error http://jsfiddle.net/Mottie/856bzzeL/117/ ![image](https://user-images.githubusercontent.com/8449843/90036218-623c3f80-dc88-11ea-8218-c6bb9fe6f793.png) Is there a change I can make to the jquery code to allow empty cells to render properly in sorts and select...

Is there an option in tabelsorter to sort in reverse? --- Regards, Ken Colvin PHP - Full-Stack LAMP - Software Engineer - Client & Revenue Focused “I not only strive...